Chromium Code Reviews| Index: chrome/test/data/extensions/api_test/input_method/ime_menu/background.js |
| diff --git a/chrome/test/data/extensions/api_test/input_method/ime_menu/background.js b/chrome/test/data/extensions/api_test/input_method/ime_menu/background.js |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..3fe8ad49e8a9b93ddd50e3cfc4cbc10d47be11b0 |
| --- /dev/null |
| +++ b/chrome/test/data/extensions/api_test/input_method/ime_menu/background.js |
| @@ -0,0 +1,19 @@ |
| +// Copyright 2016 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +chrome.inputMethodPrivate.getInputMethodConfig(function(config) { |
| + chrome.test.assertTrue(config["isImeMenuActivated"]); |
| + chrome.test.sendMessage('config_ready'); |
| +}); |
| + |
| +// We just add the listener without receiving any event at first time. The test |
| +// continues in input_method_apitest_chromeos.cc to trigger the event, and |
| +// succeeds after getting the 'event_ready' message. |
| +chrome.inputMethodPrivate.onImeMenuActivationChanged.addListener( |
| + function(isActive) { |
|
stevenjb
2016/02/02 22:30:18
indent the block below
Azure Wei
2016/02/04 05:12:50
Done. Thanks!
|
| + chrome.test.assertFalse(isActive); |
| + // Wait for the 'event_ready' message in |
| + // ExtensionInputMethodApiTest.ImeMenuActivation. |
| + chrome.test.sendMessage('event_ready'); |
| +}); |