| 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_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 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/string16.h" | 12 #include "base/string16.h" |
| 13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDevToolsAgentClien
t.h" | 13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDevToolsAgentClien
t.h" |
| 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFileSystem.h" | 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFileSystem.h" |
| 15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebKitClient.h" |
| 15 #include "ui/base/keycodes/keyboard_codes.h" | 16 #include "ui/base/keycodes/keyboard_codes.h" |
| 16 | 17 |
| 17 class WebURLLoaderMockFactory; | 18 class WebURLLoaderMockFactory; |
| 18 namespace WebKit { | 19 namespace WebKit { |
| 19 class WebApplicationCacheHost; | 20 class WebApplicationCacheHost; |
| 20 class WebApplicationCacheHostClient; | 21 class WebApplicationCacheHostClient; |
| 21 class WebCString; | 22 class WebCString; |
| 22 class WebFileSystemCallbacks; | 23 class WebFileSystemCallbacks; |
| 23 class WebFrame; | 24 class WebFrame; |
| 24 class WebKitClient; | |
| 25 class WebMediaPlayer; | 25 class WebMediaPlayer; |
| 26 class WebMediaPlayerClient; | 26 class WebMediaPlayerClient; |
| 27 class WebPlugin; | 27 class WebPlugin; |
| 28 class WebString; | 28 class WebString; |
| 29 class WebThemeEngine; | 29 class WebThemeEngine; |
| 30 class WebURL; | 30 class WebURL; |
| 31 class WebURLRequest; | 31 class WebURLRequest; |
| 32 class WebURLResponse; | 32 class WebURLResponse; |
| 33 struct WebPluginParams; | 33 struct WebPluginParams; |
| 34 struct WebURLError; | 34 struct WebURLError; |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 VKEY_F1 = ui::VKEY_F1, | 212 VKEY_F1 = ui::VKEY_F1, |
| 213 }; | 213 }; |
| 214 | 214 |
| 215 // - Timers | 215 // - Timers |
| 216 | 216 |
| 217 double GetForegroundTabTimerInterval(); | 217 double GetForegroundTabTimerInterval(); |
| 218 | 218 |
| 219 } // namespace webkit_support | 219 } // namespace webkit_support |
| 220 | 220 |
| 221 #endif // WEBKIT_SUPPORT_WEBIT_CLIENT_IMPL_H_ | 221 #endif // WEBKIT_SUPPORT_WEBIT_CLIENT_IMPL_H_ |
| OLD | NEW |