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 "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 | 11 |
12 class Task; | 12 class Task; |
13 namespace WebKit { | 13 namespace WebKit { |
14 class WebApplicationCacheHost; | 14 class WebApplicationCacheHost; |
15 class WebApplicationCacheHostClient; | 15 class WebApplicationCacheHostClient; |
| 16 class WebCString; |
16 class WebFrame; | 17 class WebFrame; |
17 class WebKitClient; | 18 class WebKitClient; |
18 class WebMediaPlayer; | 19 class WebMediaPlayer; |
19 class WebMediaPlayerClient; | 20 class WebMediaPlayerClient; |
20 class WebPlugin; | 21 class WebPlugin; |
21 class WebString; | 22 class WebString; |
22 class WebThemeEngine; | 23 class WebThemeEngine; |
23 class WebURL; | 24 class WebURL; |
24 struct WebPluginParams; | 25 struct WebPluginParams; |
25 } | 26 } |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 | 101 |
101 // - Resource loader | 102 // - Resource loader |
102 void SetAcceptAllCookies(bool accept); | 103 void SetAcceptAllCookies(bool accept); |
103 | 104 |
104 // - Theme engine | 105 // - Theme engine |
105 #if defined(OS_WIN) | 106 #if defined(OS_WIN) |
106 void SetThemeEngine(WebKit::WebThemeEngine* engine); | 107 void SetThemeEngine(WebKit::WebThemeEngine* engine); |
107 WebKit::WebThemeEngine* GetThemeEngine(); | 108 WebKit::WebThemeEngine* GetThemeEngine(); |
108 #endif | 109 #endif |
109 | 110 |
| 111 // - DevTools |
| 112 WebKit::WebCString GetDevToolsInjectedScriptSource(); |
| 113 WebKit::WebCString GetDevToolsInjectedScriptDispatcherSource(); |
| 114 WebKit::WebCString GetDevToolsDebuggerScriptSource(); |
| 115 WebKit::WebURL GetDevToolsPathAsURL(); |
| 116 |
110 } // namespace webkit_support | 117 } // namespace webkit_support |
111 | 118 |
112 #endif // WEBKIT_SUPPORT_WEBIT_CLIENT_IMPL_H_ | 119 #endif // WEBKIT_SUPPORT_WEBIT_CLIENT_IMPL_H_ |
OLD | NEW |