OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/extensions/extension_apitest.h" | 5 #include "chrome/browser/extensions/extension_apitest.h" |
6 | 6 |
7 #include "base/stringprintf.h" | 7 #include "base/stringprintf.h" |
8 #include "chrome/browser/chromeos/extensions/input_method_event_router.h" | 8 #include "chrome/browser/chromeos/extensions/input_method_event_router.h" |
9 #include "chrome/browser/chromeos/input_method/input_method_manager.h" | 9 #include "chrome/browser/chromeos/input_method/input_method_manager.h" |
10 #include "chrome/browser/extensions/extension_test_api.h" | 10 #include "chrome/browser/extensions/extension_test_api.h" |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 }; | 60 }; |
61 | 61 |
62 } // namespace | 62 } // namespace |
63 | 63 |
64 IN_PROC_BROWSER_TEST_F(ExtensionApiTest, InputMethodApiBasic) { | 64 IN_PROC_BROWSER_TEST_F(ExtensionApiTest, InputMethodApiBasic) { |
65 // Two test, two calls. See JS code for more info. | 65 // Two test, two calls. See JS code for more info. |
66 SetInputMethodListener listener(2); | 66 SetInputMethodListener listener(2); |
67 | 67 |
68 ASSERT_TRUE(RunExtensionTest("input_method")) << message_; | 68 ASSERT_TRUE(RunExtensionTest("input_method")) << message_; |
69 } | 69 } |
OLD | NEW |