| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2014 The Chromium Authors. All rights reserved. | 2 * Copyright 2014 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 #include "ash/shell.h" | 7 #include "ash/shell.h" |
| 8 #include "chrome/browser/chromeos/extensions/virtual_keyboard_browsertest.h" | 8 #include "chrome/browser/chromeos/extensions/virtual_keyboard_browsertest.h" |
| 9 #include "chrome/browser/extensions/crx_installer.h" | 9 #include "chrome/browser/extensions/crx_installer.h" |
| 10 #include "chrome/browser/extensions/extension_service.h" | 10 #include "chrome/browser/extensions/extension_service.h" |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 virtual std::string GetKeyboardExtensionId() OVERRIDE { return extensionId_; } | 82 virtual std::string GetKeyboardExtensionId() OVERRIDE { return extensionId_; } |
| 83 | 83 |
| 84 private: | 84 private: |
| 85 std::string extensionId_; | 85 std::string extensionId_; |
| 86 }; | 86 }; |
| 87 | 87 |
| 88 IN_PROC_BROWSER_TEST_F(InputViewBrowserTest, TypingTestTest) { | 88 IN_PROC_BROWSER_TEST_F(InputViewBrowserTest, TypingTestTest) { |
| 89 InstallIMEExtension(); | 89 InstallIMEExtension(); |
| 90 RunTest(base::FilePath(FILE_PATH_LITERAL("typing_test.js"))); | 90 RunTest(base::FilePath(FILE_PATH_LITERAL("typing_test.js"))); |
| 91 } | 91 } |
| 92 |
| 93 IN_PROC_BROWSER_TEST_F(InputViewBrowserTest, KeysetTransitionTest) { |
| 94 InstallIMEExtension(); |
| 95 RunTest(base::FilePath(FILE_PATH_LITERAL("keyset_transition_test.js"))); |
| 96 } |
| OLD | NEW |