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" |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 // - Resource loader | 138 // - Resource loader |
139 void SetAcceptAllCookies(bool accept); | 139 void SetAcceptAllCookies(bool accept); |
140 | 140 |
141 // - Theme engine | 141 // - Theme engine |
142 #if defined(OS_WIN) | 142 #if defined(OS_WIN) |
143 void SetThemeEngine(WebKit::WebThemeEngine* engine); | 143 void SetThemeEngine(WebKit::WebThemeEngine* engine); |
144 WebKit::WebThemeEngine* GetThemeEngine(); | 144 WebKit::WebThemeEngine* GetThemeEngine(); |
145 #endif | 145 #endif |
146 | 146 |
147 // - DevTools | 147 // - DevTools |
148 WebKit::WebCString GetDevToolsInjectedScriptSource(); | |
149 WebKit::WebCString GetDevToolsInjectedScriptDispatcherSource(); | |
150 WebKit::WebCString GetDevToolsDebuggerScriptSource(); | 148 WebKit::WebCString GetDevToolsDebuggerScriptSource(); |
151 WebKit::WebURL GetDevToolsPathAsURL(); | 149 WebKit::WebURL GetDevToolsPathAsURL(); |
152 | 150 |
153 } // namespace webkit_support | 151 } // namespace webkit_support |
154 | 152 |
155 #endif // WEBKIT_SUPPORT_WEBIT_CLIENT_IMPL_H_ | 153 #endif // WEBKIT_SUPPORT_WEBIT_CLIENT_IMPL_H_ |
OLD | NEW |