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

Unified Diff: chrome/renderer/render_view_browsertest.cc

Issue 3165064: Move the keyboard files from base/ to app/. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: latest merge Created 10 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: chrome/renderer/render_view_browsertest.cc
diff --git a/chrome/renderer/render_view_browsertest.cc b/chrome/renderer/render_view_browsertest.cc
index 8c9d9c6290b01f72c98835aac6b84293001b0f1d..13197945d13b6093a8db545236b4d58c1bfd093a 100644
--- a/chrome/renderer/render_view_browsertest.cc
+++ b/chrome/renderer/render_view_browsertest.cc
@@ -4,8 +4,8 @@
#include "base/basictypes.h"
+#include "app/keyboard_codes.h"
#include "base/file_util.h"
-#include "base/keyboard_codes.h"
#include "base/shared_memory.h"
#include "base/utf_string_conversions.h"
#include "chrome/common/content_settings.h"
@@ -579,20 +579,20 @@ TEST_F(RenderViewTest, OnHandleKeyboardEvent) {
'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N',
'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V',
'W', 'X', 'Y', 'Z',
- base::VKEY_OEM_1,
- base::VKEY_OEM_PLUS,
- base::VKEY_OEM_COMMA,
- base::VKEY_OEM_MINUS,
- base::VKEY_OEM_PERIOD,
- base::VKEY_OEM_2,
- base::VKEY_OEM_3,
- base::VKEY_OEM_4,
- base::VKEY_OEM_5,
- base::VKEY_OEM_6,
- base::VKEY_OEM_7,
+ app::VKEY_OEM_1,
+ app::VKEY_OEM_PLUS,
+ app::VKEY_OEM_COMMA,
+ app::VKEY_OEM_MINUS,
+ app::VKEY_OEM_PERIOD,
+ app::VKEY_OEM_2,
+ app::VKEY_OEM_3,
+ app::VKEY_OEM_4,
+ app::VKEY_OEM_5,
+ app::VKEY_OEM_6,
+ app::VKEY_OEM_7,
#if defined(OS_WIN)
// Not sure how to handle this key on Linux.
- base::VKEY_OEM_8,
+ app::VKEY_OEM_8,
#endif
};
@@ -818,20 +818,20 @@ TEST_F(RenderViewTest, InsertCharacters) {
'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N',
'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V',
'W', 'X', 'Y', 'Z',
- base::VKEY_OEM_1,
- base::VKEY_OEM_PLUS,
- base::VKEY_OEM_COMMA,
- base::VKEY_OEM_MINUS,
- base::VKEY_OEM_PERIOD,
- base::VKEY_OEM_2,
- base::VKEY_OEM_3,
- base::VKEY_OEM_4,
- base::VKEY_OEM_5,
- base::VKEY_OEM_6,
- base::VKEY_OEM_7,
+ app::VKEY_OEM_1,
+ app::VKEY_OEM_PLUS,
+ app::VKEY_OEM_COMMA,
+ app::VKEY_OEM_MINUS,
+ app::VKEY_OEM_PERIOD,
+ app::VKEY_OEM_2,
+ app::VKEY_OEM_3,
+ app::VKEY_OEM_4,
+ app::VKEY_OEM_5,
+ app::VKEY_OEM_6,
+ app::VKEY_OEM_7,
#if defined(OS_WIN)
// Unclear how to handle this on Linux.
- base::VKEY_OEM_8,
+ app::VKEY_OEM_8,
#endif
};
« no previous file with comments | « chrome/renderer/password_autocomplete_manager_unittest.cc ('k') | chrome/test/automated_ui_tests/automated_ui_tests.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698