| 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_WEBKIT_SUPPORT_H_ |
| 6 #define WEBKIT_SUPPORT_WEBIT_SUPPORT_H_ | 6 #define WEBKIT_SUPPORT_WEBKIT_SUPPORT_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | |
| 10 | 9 |
| 11 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 12 #include "base/string16.h" | 11 #include "base/string16.h" |
| 13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDevToolsAgentClien
t.h" | 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDevToolsAgentClien
t.h" |
| 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFileSystem.h" | 13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFileSystem.h" |
| 15 #include "ui/base/keycodes/keyboard_codes.h" | 14 #include "ui/base/keycodes/keyboard_codes.h" |
| 16 | 15 |
| 17 class WebURLLoaderMockFactory; | |
| 18 namespace WebKit { | 16 namespace WebKit { |
| 19 class WebApplicationCacheHost; | 17 class WebApplicationCacheHost; |
| 20 class WebApplicationCacheHostClient; | 18 class WebApplicationCacheHostClient; |
| 21 class WebCString; | |
| 22 class WebFileSystemCallbacks; | 19 class WebFileSystemCallbacks; |
| 23 class WebFrame; | 20 class WebFrame; |
| 24 class WebKitPlatformSupport; | 21 class WebKitPlatformSupport; |
| 25 class WebMediaPlayer; | 22 class WebMediaPlayer; |
| 26 class WebMediaPlayerClient; | 23 class WebMediaPlayerClient; |
| 27 class WebPlugin; | 24 class WebPlugin; |
| 28 class WebString; | 25 class WebString; |
| 29 class WebThemeEngine; | 26 class WebThemeEngine; |
| 30 class WebURL; | 27 class WebURL; |
| 31 class WebURLRequest; | 28 class WebURLRequest; |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 // - Timers | 216 // - Timers |
| 220 | 217 |
| 221 double GetForegroundTabTimerInterval(); | 218 double GetForegroundTabTimerInterval(); |
| 222 | 219 |
| 223 // - Logging | 220 // - Logging |
| 224 | 221 |
| 225 void EnableWebCoreLogChannels(const std::string& channels); | 222 void EnableWebCoreLogChannels(const std::string& channels); |
| 226 | 223 |
| 227 } // namespace webkit_support | 224 } // namespace webkit_support |
| 228 | 225 |
| 229 #endif // WEBKIT_SUPPORT_WEBIT_CLIENT_IMPL_H_ | 226 #endif // WEBKIT_SUPPORT_WEBKIT_SUPPORT_H_ |
| OLD | NEW |