OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_WEBKIT_SUPPORT_H_ | 5 #ifndef WEBKIT_SUPPORT_WEBKIT_SUPPORT_H_ |
6 #define WEBKIT_SUPPORT_WEBKIT_SUPPORT_H_ | 6 #define WEBKIT_SUPPORT_WEBKIT_SUPPORT_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/string16.h" | 11 #include "base/string16.h" |
12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDevToolsAgentClien
t.h" | 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDevToolsAgentClien
t.h" |
13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFileSystem.h" | 13 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebFileSyste
m.h" |
14 #include "ui/base/keycodes/keyboard_codes.h" | 14 #include "ui/base/keycodes/keyboard_codes.h" |
15 | 15 |
16 namespace WebKit { | 16 namespace WebKit { |
17 class WebApplicationCacheHost; | 17 class WebApplicationCacheHost; |
18 class WebApplicationCacheHostClient; | 18 class WebApplicationCacheHostClient; |
19 class WebFileSystemCallbacks; | 19 class WebFileSystemCallbacks; |
20 class WebFrame; | 20 class WebFrame; |
21 class WebGamepads; | 21 class WebGamepads; |
22 class WebKitPlatformSupport; | 22 class WebKitPlatformSupport; |
23 class WebMediaPlayer; | 23 class WebMediaPlayer; |
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 | 222 |
223 void EnableWebCoreLogChannels(const std::string& channels); | 223 void EnableWebCoreLogChannels(const std::string& channels); |
224 | 224 |
225 // - Gamepad | 225 // - Gamepad |
226 | 226 |
227 void SetGamepadData(const WebKit::WebGamepads& pads); | 227 void SetGamepadData(const WebKit::WebGamepads& pads); |
228 | 228 |
229 } // namespace webkit_support | 229 } // namespace webkit_support |
230 | 230 |
231 #endif // WEBKIT_SUPPORT_WEBKIT_SUPPORT_H_ | 231 #endif // WEBKIT_SUPPORT_WEBKIT_SUPPORT_H_ |
OLD | NEW |