| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #ifndef WEBKIT_SUPPORT_WEBIT_SUPPORT_H_ | 5 #ifndef WEBKIT_SUPPORT_WEBIT_SUPPORT_H_ |
| 6 #define WEBKIT_SUPPORT_WEBIT_SUPPORT_H_ | 6 #define WEBKIT_SUPPORT_WEBIT_SUPPORT_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "app/keyboard_codes.h" |
| 10 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 11 #include "base/keyboard_codes.h" | |
| 12 #include "third_party/WebKit/WebKit/chromium/public/WebDevToolsAgentClient.h" | 12 #include "third_party/WebKit/WebKit/chromium/public/WebDevToolsAgentClient.h" |
| 13 | 13 |
| 14 class Task; | 14 class Task; |
| 15 class WebURLLoaderMockFactory; | 15 class WebURLLoaderMockFactory; |
| 16 namespace WebKit { | 16 namespace WebKit { |
| 17 class WebApplicationCacheHost; | 17 class WebApplicationCacheHost; |
| 18 class WebApplicationCacheHostClient; | 18 class WebApplicationCacheHostClient; |
| 19 class WebCString; | 19 class WebCString; |
| 20 class WebFrame; | 20 class WebFrame; |
| 21 class WebKitClient; | 21 class WebKitClient; |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 void SetThemeEngine(WebKit::WebThemeEngine* engine); | 148 void SetThemeEngine(WebKit::WebThemeEngine* engine); |
| 149 WebKit::WebThemeEngine* GetThemeEngine(); | 149 WebKit::WebThemeEngine* GetThemeEngine(); |
| 150 #endif | 150 #endif |
| 151 | 151 |
| 152 // - DevTools | 152 // - DevTools |
| 153 WebKit::WebCString GetDevToolsDebuggerScriptSource(); | 153 WebKit::WebCString GetDevToolsDebuggerScriptSource(); |
| 154 WebKit::WebURL GetDevToolsPathAsURL(); | 154 WebKit::WebURL GetDevToolsPathAsURL(); |
| 155 | 155 |
| 156 // -------- Keyboard code | 156 // -------- Keyboard code |
| 157 enum { | 157 enum { |
| 158 VKEY_LEFT = base::VKEY_LEFT, | 158 VKEY_LEFT = app::VKEY_LEFT, |
| 159 VKEY_RIGHT = base::VKEY_RIGHT, | 159 VKEY_RIGHT = app::VKEY_RIGHT, |
| 160 VKEY_UP = base::VKEY_UP, | 160 VKEY_UP = app::VKEY_UP, |
| 161 VKEY_DOWN = base::VKEY_DOWN, | 161 VKEY_DOWN = app::VKEY_DOWN, |
| 162 VKEY_RETURN = base::VKEY_RETURN, | 162 VKEY_RETURN = app::VKEY_RETURN, |
| 163 VKEY_INSERT = base::VKEY_INSERT, | 163 VKEY_INSERT = app::VKEY_INSERT, |
| 164 VKEY_DELETE = base::VKEY_DELETE, | 164 VKEY_DELETE = app::VKEY_DELETE, |
| 165 VKEY_PRIOR = base::VKEY_PRIOR, | 165 VKEY_PRIOR = app::VKEY_PRIOR, |
| 166 VKEY_NEXT = base::VKEY_NEXT, | 166 VKEY_NEXT = app::VKEY_NEXT, |
| 167 VKEY_HOME = base::VKEY_HOME, | 167 VKEY_HOME = app::VKEY_HOME, |
| 168 VKEY_END = base::VKEY_END, | 168 VKEY_END = app::VKEY_END, |
| 169 VKEY_SNAPSHOT = base::VKEY_SNAPSHOT, | 169 VKEY_SNAPSHOT = app::VKEY_SNAPSHOT, |
| 170 VKEY_F1 = base::VKEY_F1, | 170 VKEY_F1 = app::VKEY_F1, |
| 171 }; | 171 }; |
| 172 | 172 |
| 173 } // namespace webkit_support | 173 } // namespace webkit_support |
| 174 | 174 |
| 175 #endif // WEBKIT_SUPPORT_WEBIT_CLIENT_IMPL_H_ | 175 #endif // WEBKIT_SUPPORT_WEBIT_CLIENT_IMPL_H_ |
| OLD | NEW |