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

Unified Diff: webkit/support/webkit_support.h

Issue 3354005: Re-lands 58186: (Closed)
Patch Set: 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
« no previous file with comments | « webkit/support/DEPS ('k') | webkit/tools/test_shell/event_sending_controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/support/webkit_support.h
diff --git a/webkit/support/webkit_support.h b/webkit/support/webkit_support.h
index 0cb00b8ff12b41d92920dd773ba237d1f763d955..6c17de208387abf5a42849dbfe78288bcc8d5cae 100644
--- a/webkit/support/webkit_support.h
+++ b/webkit/support/webkit_support.h
@@ -7,8 +7,8 @@
#include <string>
+#include "app/keyboard_codes.h"
#include "base/basictypes.h"
-#include "base/keyboard_codes.h"
#include "third_party/WebKit/WebKit/chromium/public/WebDevToolsAgentClient.h"
class Task;
@@ -155,19 +155,19 @@ WebKit::WebURL GetDevToolsPathAsURL();
// -------- Keyboard code
enum {
- VKEY_LEFT = base::VKEY_LEFT,
- VKEY_RIGHT = base::VKEY_RIGHT,
- VKEY_UP = base::VKEY_UP,
- VKEY_DOWN = base::VKEY_DOWN,
- VKEY_RETURN = base::VKEY_RETURN,
- VKEY_INSERT = base::VKEY_INSERT,
- VKEY_DELETE = base::VKEY_DELETE,
- VKEY_PRIOR = base::VKEY_PRIOR,
- VKEY_NEXT = base::VKEY_NEXT,
- VKEY_HOME = base::VKEY_HOME,
- VKEY_END = base::VKEY_END,
- VKEY_SNAPSHOT = base::VKEY_SNAPSHOT,
- VKEY_F1 = base::VKEY_F1,
+ VKEY_LEFT = app::VKEY_LEFT,
+ VKEY_RIGHT = app::VKEY_RIGHT,
+ VKEY_UP = app::VKEY_UP,
+ VKEY_DOWN = app::VKEY_DOWN,
+ VKEY_RETURN = app::VKEY_RETURN,
+ VKEY_INSERT = app::VKEY_INSERT,
+ VKEY_DELETE = app::VKEY_DELETE,
+ VKEY_PRIOR = app::VKEY_PRIOR,
+ VKEY_NEXT = app::VKEY_NEXT,
+ VKEY_HOME = app::VKEY_HOME,
+ VKEY_END = app::VKEY_END,
+ VKEY_SNAPSHOT = app::VKEY_SNAPSHOT,
+ VKEY_F1 = app::VKEY_F1,
};
} // namespace webkit_support
« no previous file with comments | « webkit/support/DEPS ('k') | webkit/tools/test_shell/event_sending_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698