Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(215)

Side by Side Diff: webkit/support/webkit_support.h

Issue 2810025: Add support functions for DRT DevTools to webkit_support (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | webkit/support/webkit_support.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « no previous file | webkit/support/webkit_support.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698