| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/Platform/chromium/public/Platform.h" | 12 #include "third_party/WebKit/Source/Platform/chromium/public/Platform.h" |
| 13 #include "third_party/WebKit/Source/Platform/chromium/public/WebReferrerPolicy.h
" | 13 #include "third_party/WebKit/Source/Platform/chromium/public/WebReferrerPolicy.h
" |
| 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDevToolsAgentClien
t.h" | |
| 15 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebFileSyste
m.h" | 14 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebFileSyste
m.h" |
| 16 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebGraphicsC
ontext3D.h" | 15 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebGraphicsC
ontext3D.h" |
| 17 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLReques
t.h" | 16 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLReques
t.h" |
| 18 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebVector.h" | 17 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebVector.h" |
| 18 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDevToolsAgentClien
t.h" |
| 19 #include "ui/base/keycodes/keyboard_codes.h" | 19 #include "ui/base/keycodes/keyboard_codes.h" |
| 20 | 20 |
| 21 namespace WebKit { | 21 namespace WebKit { |
| 22 class WebApplicationCacheHost; | 22 class WebApplicationCacheHost; |
| 23 class WebApplicationCacheHostClient; | 23 class WebApplicationCacheHostClient; |
| 24 class WebFileSystemCallbacks; | 24 class WebFileSystemCallbacks; |
| 25 class WebFrame; | 25 class WebFrame; |
| 26 class WebGamepads; | 26 class WebGamepads; |
| 27 class WebKitPlatformSupport; | 27 class WebKitPlatformSupport; |
| 28 class WebMediaPlayer; | 28 class WebMediaPlayer; |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 | 277 |
| 278 void EnableWebCoreLogChannels(const std::string& channels); | 278 void EnableWebCoreLogChannels(const std::string& channels); |
| 279 | 279 |
| 280 // - Gamepad | 280 // - Gamepad |
| 281 | 281 |
| 282 void SetGamepadData(const WebKit::WebGamepads& pads); | 282 void SetGamepadData(const WebKit::WebGamepads& pads); |
| 283 | 283 |
| 284 } // namespace webkit_support | 284 } // namespace webkit_support |
| 285 | 285 |
| 286 #endif // WEBKIT_SUPPORT_WEBKIT_SUPPORT_H_ | 286 #endif // WEBKIT_SUPPORT_WEBKIT_SUPPORT_H_ |
| OLD | NEW |