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 WebKit::WebCookieJar* cookieJar(); | 60 virtual WebKit::WebCookieJar* cookieJar(); |
61 virtual WebKit::WebHyphenator* hyphenator(); | 61 virtual WebKit::WebHyphenator* hyphenator(); |
62 virtual WebKit::WebThemeEngine* themeEngine(); | 62 virtual WebKit::WebThemeEngine* themeEngine(); |
63 virtual WebKit::WebSpeechSynthesizer* createSpeechSynthesizer( | 63 virtual WebKit::WebSpeechSynthesizer* createSpeechSynthesizer( |
64 WebKit::WebSpeechSynthesizerClient* client); | 64 WebKit::WebSpeechSynthesizerClient* client); |
65 virtual bool sandboxEnabled(); | 65 virtual bool sandboxEnabled(); |
66 virtual unsigned long long visitedLinkHash( | 66 virtual unsigned long long visitedLinkHash( |
67 const char* canonicalURL, size_t length); | 67 const char* canonicalURL, size_t length); |
68 virtual bool isLinkVisited(unsigned long long linkHash); | 68 virtual bool isLinkVisited(unsigned long long linkHash); |
69 virtual WebKit::WebMessagePortChannel* createMessagePortChannel(); | 69 virtual WebKit::WebMessagePortChannel* createMessagePortChannel(); |
70 virtual void prefetchHostName(const WebKit::WebString&); | |
71 virtual WebKit::WebPrescientNetworking* prescientNetworking(); | 70 virtual WebKit::WebPrescientNetworking* prescientNetworking(); |
72 virtual void cacheMetadata( | 71 virtual void cacheMetadata( |
73 const WebKit::WebURL&, double, const char*, size_t); | 72 const WebKit::WebURL&, double, const char*, size_t); |
74 virtual WebKit::WebString defaultLocale(); | 73 virtual WebKit::WebString defaultLocale(); |
75 virtual void suddenTerminationChanged(bool enabled); | 74 virtual void suddenTerminationChanged(bool enabled); |
76 virtual WebKit::WebStorageNamespace* createLocalStorageNamespace(); | 75 virtual WebKit::WebStorageNamespace* createLocalStorageNamespace(); |
77 virtual WebKit::Platform::FileHandle databaseOpenFile( | 76 virtual WebKit::Platform::FileHandle databaseOpenFile( |
78 const WebKit::WebString& vfs_file_name, int desired_flags); | 77 const WebKit::WebString& vfs_file_name, int desired_flags); |
79 virtual int databaseDeleteFile(const WebKit::WebString& vfs_file_name, | 78 virtual int databaseDeleteFile(const WebKit::WebString& vfs_file_name, |
80 bool sync_dir); | 79 bool sync_dir); |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
216 scoped_refptr<cc::ContextProvider> shared_offscreen_context_; | 215 scoped_refptr<cc::ContextProvider> shared_offscreen_context_; |
217 | 216 |
218 webkit::WebCompositorSupportImpl compositor_support_; | 217 webkit::WebCompositorSupportImpl compositor_support_; |
219 | 218 |
220 scoped_ptr<WebCryptoImpl> web_crypto_; | 219 scoped_ptr<WebCryptoImpl> web_crypto_; |
221 }; | 220 }; |
222 | 221 |
223 } // namespace content | 222 } // namespace content |
224 | 223 |
225 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 224 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
OLD | NEW |