Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(183)

Side by Side Diff: chrome/browser/chromeos/extensions/input_view_browsertest.cc

Issue 255823004: Adds shift and capslock tests to IME Keyboard tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 virtual std::string GetKeyboardExtensionId() OVERRIDE { return extensionId_; } 81 virtual std::string GetKeyboardExtensionId() OVERRIDE { return extensionId_; }
82 82
83 private: 83 private:
84 std::string extensionId_; 84 std::string extensionId_;
85 }; 85 };
86 86
87 IN_PROC_BROWSER_TEST_F(InputViewBrowserTest, TypingTest) { 87 IN_PROC_BROWSER_TEST_F(InputViewBrowserTest, TypingTest) {
88 InstallIMEExtension(); 88 InstallIMEExtension();
89 RunTest(base::FilePath(FILE_PATH_LITERAL("typing_test.js"))); 89 RunTest(base::FilePath(FILE_PATH_LITERAL("typing_test.js")));
90 } 90 }
91
92 IN_PROC_BROWSER_TEST_F(InputViewBrowserTest, KeysetTransitionTest) {
93 InstallIMEExtension();
94 RunTest(base::FilePath(FILE_PATH_LITERAL("keyset_transition_test.js")));
95 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698