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

Side by Side Diff: webkit/glue/webkit_glue.h

Issue 58008: Replace webkit/glue/screen_info.h with WebKit/chromium/public/WebScreenInfo.h... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 8 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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_GLUE_WEBKIT_GLUE_H_ 5 #ifndef WEBKIT_GLUE_WEBKIT_GLUE_H_
6 #define WEBKIT_GLUE_WEBKIT_GLUE_H_ 6 #define WEBKIT_GLUE_WEBKIT_GLUE_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 9
10 #if defined(OS_WIN) 10 #if defined(OS_WIN)
(...skipping 13 matching lines...) Expand all
24 class WebView; 24 class WebView;
25 class WebFrame; 25 class WebFrame;
26 struct WebPluginInfo; 26 struct WebPluginInfo;
27 27
28 namespace WebKit { 28 namespace WebKit {
29 class WebString; 29 class WebString;
30 } 30 }
31 31
32 namespace webkit_glue { 32 namespace webkit_glue {
33 33
34 struct ScreenInfo;
35
36 34
37 //---- BEGIN FUNCTIONS IMPLEMENTED BY WEBKIT/GLUE ----------------------------- 35 //---- BEGIN FUNCTIONS IMPLEMENTED BY WEBKIT/GLUE -----------------------------
38 36
39 void SetJavaScriptFlags(const std::wstring& flags); 37 void SetJavaScriptFlags(const std::wstring& flags);
40 38
41 // Turn on the logging for notImplemented() calls from WebCore. 39 // Turn on the logging for notImplemented() calls from WebCore.
42 void EnableWebCoreNotImplementedLogging(); 40 void EnableWebCoreNotImplementedLogging();
43 41
44 // Returns screen information corresponding to the given window. This is the
45 // default implementation.
46 ScreenInfo GetScreenInfoHelper(gfx::NativeView window);
47
48 // Returns the text of the document element. 42 // Returns the text of the document element.
49 std::wstring DumpDocumentText(WebFrame* web_frame); 43 std::wstring DumpDocumentText(WebFrame* web_frame);
50 44
51 // Returns the text of the document element and optionally its child frames. 45 // Returns the text of the document element and optionally its child frames.
52 // If recursive is false, this is equivalent to DumpDocumentText followed by 46 // If recursive is false, this is equivalent to DumpDocumentText followed by
53 // a newline. If recursive is true, it recursively dumps all frames as text. 47 // a newline. If recursive is true, it recursively dumps all frames as text.
54 std::wstring DumpFramesAsText(WebFrame* web_frame, bool recursive); 48 std::wstring DumpFramesAsText(WebFrame* web_frame, bool recursive);
55 49
56 // Returns the renderer's description of its tree (its externalRepresentation). 50 // Returns the renderer's description of its tree (its externalRepresentation).
57 std::wstring DumpRenderer(WebFrame* web_frame); 51 std::wstring DumpRenderer(WebFrame* web_frame);
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 // Returns true if successful, false otherwise. 180 // Returns true if successful, false otherwise.
187 bool GetExeDirectory(std::wstring* path); 181 bool GetExeDirectory(std::wstring* path);
188 182
189 // Embedders implement this function to return the list of plugins to Webkit. 183 // Embedders implement this function to return the list of plugins to Webkit.
190 bool GetPlugins(bool refresh, std::vector<WebPluginInfo>* plugins); 184 bool GetPlugins(bool refresh, std::vector<WebPluginInfo>* plugins);
191 185
192 // Returns true if the plugins run in the same process as the renderer, and 186 // Returns true if the plugins run in the same process as the renderer, and
193 // false otherwise. 187 // false otherwise.
194 bool IsPluginRunningInRendererProcess(); 188 bool IsPluginRunningInRendererProcess();
195 189
196 // Returns screen information corresponding to the given window.
197 ScreenInfo GetScreenInfo(gfx::NativeViewId window);
198
199 // Returns a bool indicating if the Null plugin should be enabled or not. 190 // Returns a bool indicating if the Null plugin should be enabled or not.
200 bool IsDefaultPluginEnabled(); 191 bool IsDefaultPluginEnabled();
201 192
202 #if defined(OS_WIN) 193 #if defined(OS_WIN)
203 // Downloads the file specified by the URL. On sucess a WM_COPYDATA message 194 // Downloads the file specified by the URL. On sucess a WM_COPYDATA message
204 // will be sent to the caller_window. 195 // will be sent to the caller_window.
205 bool DownloadUrl(const std::string& url, HWND caller_window); 196 bool DownloadUrl(const std::string& url, HWND caller_window);
206 #endif 197 #endif
207 198
208 // Returns the plugin finder URL. 199 // Returns the plugin finder URL.
209 bool GetPluginFinderURL(std::string* plugin_finder_url); 200 bool GetPluginFinderURL(std::string* plugin_finder_url);
210 201
211 // Resolves the proxies for the url, returns true on success. 202 // Resolves the proxies for the url, returns true on success.
212 bool FindProxyForUrl(const GURL& url, std::string* proxy_list); 203 bool FindProxyForUrl(const GURL& url, std::string* proxy_list);
213 204
214 // Returns the locale that this instance of webkit is running as. This is of 205 // Returns the locale that this instance of webkit is running as. This is of
215 // the form language-country (e.g., en-US or pt-BR). 206 // the form language-country (e.g., en-US or pt-BR).
216 std::wstring GetWebKitLocale(); 207 std::wstring GetWebKitLocale();
217 208
218 // ---- END FUNCTIONS IMPLEMENTED BY EMBEDDER --------------------------------- 209 // ---- END FUNCTIONS IMPLEMENTED BY EMBEDDER ---------------------------------
219 210
220 211
221 } // namespace webkit_glue 212 } // namespace webkit_glue
222 213
223 #endif // WEBKIT_GLUE_WEBKIT_GLUE_H_ 214 #endif // WEBKIT_GLUE_WEBKIT_GLUE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698