| 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 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |