| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_WEBKIT_SUPPORT_H_ | 5 #ifndef WEBKIT_SUPPORT_WEBKIT_SUPPORT_H_ |
| 6 #define WEBKIT_SUPPORT_WEBKIT_SUPPORT_H_ | 6 #define WEBKIT_SUPPORT_WEBKIT_SUPPORT_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 // - Theme engine | 226 // - Theme engine |
| 227 #if defined(OS_WIN) || defined(OS_MACOSX) | 227 #if defined(OS_WIN) || defined(OS_MACOSX) |
| 228 void SetThemeEngine(WebKit::WebThemeEngine* engine); | 228 void SetThemeEngine(WebKit::WebThemeEngine* engine); |
| 229 WebKit::WebThemeEngine* GetThemeEngine(); | 229 WebKit::WebThemeEngine* GetThemeEngine(); |
| 230 #endif | 230 #endif |
| 231 | 231 |
| 232 // - DevTools | 232 // - DevTools |
| 233 WebKit::WebURL GetDevToolsPathAsURL(); | 233 WebKit::WebURL GetDevToolsPathAsURL(); |
| 234 | 234 |
| 235 // - FileSystem | 235 // - FileSystem |
| 236 void OpenFileSystem(WebKit::WebFrame* frame, WebKit::WebFileSystem::Type type, | 236 void OpenFileSystem(WebKit::WebFrame* frame, |
| 237 long long size, bool create, WebKit::WebFileSystemCallbacks* callbacks); | 237 WebKit::WebFileSystem::Type type, |
| 238 long long size, |
| 239 bool create, |
| 240 WebKit::WebFileSystemCallbacks* callbacks); |
| 241 void DeleteFileSystem(WebKit::WebFrame* frame, |
| 242 WebKit::WebFileSystem::Type type, |
| 243 WebKit::WebFileSystemCallbacks* callbacks); |
| 238 | 244 |
| 239 // Returns a filesystem ID for the newly created isolated filesystem. | 245 // Returns a filesystem ID for the newly created isolated filesystem. |
| 240 WebKit::WebString RegisterIsolatedFileSystem( | 246 WebKit::WebString RegisterIsolatedFileSystem( |
| 241 const WebKit::WebVector<WebKit::WebString>& filenames); | 247 const WebKit::WebVector<WebKit::WebString>& filenames); |
| 242 | 248 |
| 243 // -------- Keyboard code | 249 // -------- Keyboard code |
| 244 enum { | 250 enum { |
| 245 VKEY_LEFT = ui::VKEY_LEFT, | 251 VKEY_LEFT = ui::VKEY_LEFT, |
| 246 VKEY_RIGHT = ui::VKEY_RIGHT, | 252 VKEY_RIGHT = ui::VKEY_RIGHT, |
| 247 VKEY_UP = ui::VKEY_UP, | 253 VKEY_UP = ui::VKEY_UP, |
| (...skipping 21 matching lines...) Expand all Loading... |
| 269 | 275 |
| 270 void EnableWebCoreLogChannels(const std::string& channels); | 276 void EnableWebCoreLogChannels(const std::string& channels); |
| 271 | 277 |
| 272 // - Gamepad | 278 // - Gamepad |
| 273 | 279 |
| 274 void SetGamepadData(const WebKit::WebGamepads& pads); | 280 void SetGamepadData(const WebKit::WebGamepads& pads); |
| 275 | 281 |
| 276 } // namespace webkit_support | 282 } // namespace webkit_support |
| 277 | 283 |
| 278 #endif // WEBKIT_SUPPORT_WEBKIT_SUPPORT_H_ | 284 #endif // WEBKIT_SUPPORT_WEBKIT_SUPPORT_H_ |
| OLD | NEW |