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

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

Issue 6090002: Expose Mac WebThemeEngine hooks added by r70278 (and r74581 on the WebKit sid... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 11 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
« no previous file with comments | « webkit/support/test_webkit_client.cc ('k') | 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 #include <vector> 9 #include <vector>
10 10
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 WebKit::WebURLError CreateCancelledError(const WebKit::WebURLRequest& request); 139 WebKit::WebURLError CreateCancelledError(const WebKit::WebURLRequest& request);
140 140
141 // - Database 141 // - Database
142 void SetDatabaseQuota(int quota); 142 void SetDatabaseQuota(int quota);
143 void ClearAllDatabases(); 143 void ClearAllDatabases();
144 144
145 // - Resource loader 145 // - Resource loader
146 void SetAcceptAllCookies(bool accept); 146 void SetAcceptAllCookies(bool accept);
147 147
148 // - Theme engine 148 // - Theme engine
149 #if defined(OS_WIN) 149 #if defined(OS_WIN) || defined(OS_MACOSX)
150 void SetThemeEngine(WebKit::WebThemeEngine* engine); 150 void SetThemeEngine(WebKit::WebThemeEngine* engine);
151 WebKit::WebThemeEngine* GetThemeEngine(); 151 WebKit::WebThemeEngine* GetThemeEngine();
152 #endif 152 #endif
153 153
154 // - DevTools 154 // - DevTools
155 WebKit::WebCString GetDevToolsDebuggerScriptSource(); 155 WebKit::WebCString GetDevToolsDebuggerScriptSource();
156 WebKit::WebURL GetDevToolsPathAsURL(); 156 WebKit::WebURL GetDevToolsPathAsURL();
157 157
158 // - FileSystem 158 // - FileSystem
159 void OpenFileSystem(WebKit::WebFrame* frame, WebKit::WebFileSystem::Type type, 159 void OpenFileSystem(WebKit::WebFrame* frame, WebKit::WebFileSystem::Type type,
(...skipping 12 matching lines...) Expand all
172 VKEY_NEXT = app::VKEY_NEXT, 172 VKEY_NEXT = app::VKEY_NEXT,
173 VKEY_HOME = app::VKEY_HOME, 173 VKEY_HOME = app::VKEY_HOME,
174 VKEY_END = app::VKEY_END, 174 VKEY_END = app::VKEY_END,
175 VKEY_SNAPSHOT = app::VKEY_SNAPSHOT, 175 VKEY_SNAPSHOT = app::VKEY_SNAPSHOT,
176 VKEY_F1 = app::VKEY_F1, 176 VKEY_F1 = app::VKEY_F1,
177 }; 177 };
178 178
179 } // namespace webkit_support 179 } // namespace webkit_support
180 180
181 #endif // WEBKIT_SUPPORT_WEBIT_CLIENT_IMPL_H_ 181 #endif // WEBKIT_SUPPORT_WEBIT_CLIENT_IMPL_H_
OLDNEW
« no previous file with comments | « webkit/support/test_webkit_client.cc ('k') | webkit/support/webkit_support.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698