"implemented on Android, Mac and Linux.";The Mac doesn’t use Aura, so for accuracy you may want to remove it from this comment.
NOTIMPLEMENTED_LOG_ONCE() << "Right Alt key test util support is not "
"implemented on Android, Mac and Linux.";While Android and Linux do have a concept of AltGr, there is no such thing on the Mac. This is a Mac-only file, so consider only mentioning the Mac, with something like
```suggestion
NOTIMPLEMENTED_LOG_ONCE() << "Right Alt testing is inapplicable on the Mac.";
```
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Removing Avi Drissman and Jon Ross until CL is ready. CQ issues will take some time to debug. Apologies for the noise!
bool control,
bool shift,
bool alt,
bool command,
ui_controls::KeyEventType wait_for = ui_controls::kKeyRelease,
bool right_alt = false);John AnI’m somewhat concerned for the long term about a bunch of `bool`s in a row and the ease of mixing them up. Sometimes `right_alt` immediately follows `alt` but sometimes, like here, it’s at the end so that it can have a default value applied.
I’m wondering if, for a followup cleanup CL, we can abstract the notion of “bools for modifier keys” into a dedicated struct. Even something as simple as five `bools` (defaulted to `false`) would let us use designated initialization for clarity.
I'm in favor of a bools for modifiers keys struct and can own that. Certainly would have made this change easier.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
CQ is passing now and test code is refactored. PTAL!
The Mac doesn’t use Aura, so for accuracy you may want to remove it from this comment.
Done
// This doesn't time out if `window` is deleted before the key release events
// are dispatched, so it's fine to ignore `wait_for` and always wait for key
// release events.John AnMove the comment to precede the code to which it applies.
Done
NOTIMPLEMENTED_LOG_ONCE() << "Right Alt key test util support is not "
"implemented on Android, Mac and Linux.";While Android and Linux do have a concept of AltGr, there is no such thing on the Mac. This is a Mac-only file, so consider only mentioning the Mac, with something like
```suggestion
NOTIMPLEMENTED_LOG_ONCE() << "Right Alt testing is inapplicable on the Mac.";
```
Done
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Reviewer source(s):
m...@chromium.org is from context(googleclient/chrome/chromium_gwsq/ui/views/config.gwsq)
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |