| 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 CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/platform_file.h" | 10 #include "base/platform_file.h" |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 virtual blink::WebFileUtilities* fileUtilities(); | 60 virtual blink::WebFileUtilities* fileUtilities(); |
| 61 virtual blink::WebSandboxSupport* sandboxSupport(); | 61 virtual blink::WebSandboxSupport* sandboxSupport(); |
| 62 virtual blink::WebCookieJar* cookieJar(); | 62 virtual blink::WebCookieJar* cookieJar(); |
| 63 virtual blink::WebThemeEngine* themeEngine(); | 63 virtual blink::WebThemeEngine* themeEngine(); |
| 64 virtual blink::WebSpeechSynthesizer* createSpeechSynthesizer( | 64 virtual blink::WebSpeechSynthesizer* createSpeechSynthesizer( |
| 65 blink::WebSpeechSynthesizerClient* client); | 65 blink::WebSpeechSynthesizerClient* client); |
| 66 virtual bool sandboxEnabled(); | 66 virtual bool sandboxEnabled(); |
| 67 virtual unsigned long long visitedLinkHash( | 67 virtual unsigned long long visitedLinkHash( |
| 68 const char* canonicalURL, size_t length); | 68 const char* canonicalURL, size_t length); |
| 69 virtual bool isLinkVisited(unsigned long long linkHash); | 69 virtual bool isLinkVisited(unsigned long long linkHash); |
| 70 virtual blink::WebMessagePortChannel* createMessagePortChannel(); | 70 virtual void createMessageChannel(blink::WebMessagePortChannel** channel1, |
| 71 virtual void createMessageChannel( | 71 blink::WebMessagePortChannel** channel2); |
| 72 blink::WebMessagePortChannel** channel1, | |
| 73 blink::WebMessagePortChannel** channel2); | |
| 74 virtual blink::WebPrescientNetworking* prescientNetworking(); | 72 virtual blink::WebPrescientNetworking* prescientNetworking(); |
| 75 virtual void cacheMetadata( | 73 virtual void cacheMetadata( |
| 76 const blink::WebURL&, double, const char*, size_t); | 74 const blink::WebURL&, double, const char*, size_t); |
| 77 virtual blink::WebString defaultLocale(); | 75 virtual blink::WebString defaultLocale(); |
| 78 virtual void suddenTerminationChanged(bool enabled); | 76 virtual void suddenTerminationChanged(bool enabled); |
| 79 virtual blink::WebStorageNamespace* createLocalStorageNamespace(); | 77 virtual blink::WebStorageNamespace* createLocalStorageNamespace(); |
| 80 virtual blink::Platform::FileHandle databaseOpenFile( | 78 virtual blink::Platform::FileHandle databaseOpenFile( |
| 81 const blink::WebString& vfs_file_name, int desired_flags); | 79 const blink::WebString& vfs_file_name, int desired_flags); |
| 82 virtual int databaseDeleteFile(const blink::WebString& vfs_file_name, | 80 virtual int databaseDeleteFile(const blink::WebString& vfs_file_name, |
| 83 bool sync_dir); | 81 bool sync_dir); |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 scoped_ptr<ScreenOrientationDispatcher> screen_orientation_dispatcher_; | 229 scoped_ptr<ScreenOrientationDispatcher> screen_orientation_dispatcher_; |
| 232 | 230 |
| 233 scoped_ptr<blink::WebScrollbarBehavior> web_scrollbar_behavior_; | 231 scoped_ptr<blink::WebScrollbarBehavior> web_scrollbar_behavior_; |
| 234 | 232 |
| 235 DISALLOW_COPY_AND_ASSIGN(RendererWebKitPlatformSupportImpl); | 233 DISALLOW_COPY_AND_ASSIGN(RendererWebKitPlatformSupportImpl); |
| 236 }; | 234 }; |
| 237 | 235 |
| 238 } // namespace content | 236 } // namespace content |
| 239 | 237 |
| 240 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 238 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
| OLD | NEW |