Chromium Code Reviews| Index: chrome/browser/extensions/extension_commands_global_registry_apitest.cc |
| diff --git a/chrome/browser/extensions/extension_commands_global_registry_apitest.cc b/chrome/browser/extensions/extension_commands_global_registry_apitest.cc |
| index 34ad9c66637ef7158c2ac7e1ba42aa47b5fe3eb1..b69623baa550a1fa191aaa3d50ecaf6b7dec5a89 100644 |
| --- a/chrome/browser/extensions/extension_commands_global_registry_apitest.cc |
| +++ b/chrome/browser/extensions/extension_commands_global_registry_apitest.cc |
| @@ -119,6 +119,13 @@ void SendNativeCommandShift(int key_code) { |
| // doesn't have focus. Also test that non-global commands are not treated as |
| // global and that keys beyond Ctrl+Shift+[0..9] cannot be auto-assigned by an |
| // extension. |
| +// |
| +// Doesn't work in GN CrOS builds yet, http://crbug.com/619784 |
| +#if defined(OS_CHROMEOS) |
| +#define MAYBE_GlobalCommand DISABLED_GlobalCommand |
|
stevenjb
2016/06/16 00:32:41
This only fails if defined(USE_OZONE), so maybe on
Dirk Pranke
2016/06/16 00:37:13
ok
|
| +#else |
| +#define MAYBE_GlobalCommand GlobalCommand |
| +#endif |
| IN_PROC_BROWSER_TEST_F(GlobalCommandsApiTest, GlobalCommand) { |
| // Load the extension in the non-incognito browser. |
| ResultCatcher catcher; |