| Index: chrome/tools/extract_actions.py
|
| diff --git a/chrome/tools/extract_actions.py b/chrome/tools/extract_actions.py
|
| index 3517183174f4d13966ea5e97a2021dac23a94271..9027620e5c85bc1a1536cb44eaa7176fc54ff29d 100755
|
| --- a/chrome/tools/extract_actions.py
|
| +++ b/chrome/tools/extract_actions.py
|
| @@ -133,6 +133,16 @@ def AddComputedActions(actions):
|
| actions.add('LanguageOptions_UiLanguageChange_%s' % language_code)
|
| actions.add('LanguageOptions_SpellCheckLanguageChange_%s' % language_code)
|
|
|
| + # Actions sent by the Chrome OS window manager.
|
| + actions.add('Accel_NextWindow_Tab')
|
| + actions.add('Accel_PrevWindow_Tab')
|
| + actions.add('Accel_NextWindow_F5')
|
| + actions.add('Accel_PrevWindow_F5')
|
| +
|
| + # Actions sent by the Chrome OS power manager.
|
| + actions.add('Accel_BrightnessDown_F6')
|
| + actions.add('Accel_BrightnessUp_F7')
|
| +
|
| def AddWebKitEditorActions(actions):
|
| """Add editor actions from editor_client_impl.cc.
|
|
|
|
|