| 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_BLINK_PLATFORM_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/id_map.h" | 9 #include "base/id_map.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 virtual blink::WebThemeEngine* themeEngine(); | 69 virtual blink::WebThemeEngine* themeEngine(); |
| 70 virtual blink::WebSpeechSynthesizer* createSpeechSynthesizer( | 70 virtual blink::WebSpeechSynthesizer* createSpeechSynthesizer( |
| 71 blink::WebSpeechSynthesizerClient* client); | 71 blink::WebSpeechSynthesizerClient* client); |
| 72 virtual bool sandboxEnabled(); | 72 virtual bool sandboxEnabled(); |
| 73 virtual unsigned long long visitedLinkHash( | 73 virtual unsigned long long visitedLinkHash( |
| 74 const char* canonicalURL, size_t length); | 74 const char* canonicalURL, size_t length); |
| 75 virtual bool isLinkVisited(unsigned long long linkHash); | 75 virtual bool isLinkVisited(unsigned long long linkHash); |
| 76 virtual void createMessageChannel(blink::WebMessagePortChannel** channel1, | 76 virtual void createMessageChannel(blink::WebMessagePortChannel** channel1, |
| 77 blink::WebMessagePortChannel** channel2); | 77 blink::WebMessagePortChannel** channel2); |
| 78 virtual blink::WebPrescientNetworking* prescientNetworking(); | 78 virtual blink::WebPrescientNetworking* prescientNetworking(); |
| 79 virtual void cacheMetadata( | |
| 80 const blink::WebURL&, double, const char*, size_t); | |
| 81 virtual void cacheMetadata(const blink::WebURL&, int64, const char*, size_t); | 79 virtual void cacheMetadata(const blink::WebURL&, int64, const char*, size_t); |
| 82 virtual blink::WebString defaultLocale(); | 80 virtual blink::WebString defaultLocale(); |
| 83 virtual void suddenTerminationChanged(bool enabled); | 81 virtual void suddenTerminationChanged(bool enabled); |
| 84 virtual blink::WebStorageNamespace* createLocalStorageNamespace(); | 82 virtual blink::WebStorageNamespace* createLocalStorageNamespace(); |
| 85 virtual blink::Platform::FileHandle databaseOpenFile( | 83 virtual blink::Platform::FileHandle databaseOpenFile( |
| 86 const blink::WebString& vfs_file_name, int desired_flags); | 84 const blink::WebString& vfs_file_name, int desired_flags); |
| 87 virtual int databaseDeleteFile(const blink::WebString& vfs_file_name, | 85 virtual int databaseDeleteFile(const blink::WebString& vfs_file_name, |
| 88 bool sync_dir); | 86 bool sync_dir); |
| 89 virtual long databaseGetFileAttributes( | 87 virtual long databaseGetFileAttributes( |
| 90 const blink::WebString& vfs_file_name); | 88 const blink::WebString& vfs_file_name); |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 device::VibrationManagerPtr vibration_manager_; | 251 device::VibrationManagerPtr vibration_manager_; |
| 254 | 252 |
| 255 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; | 253 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; |
| 256 | 254 |
| 257 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 255 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
| 258 }; | 256 }; |
| 259 | 257 |
| 260 } // namespace content | 258 } // namespace content |
| 261 | 259 |
| 262 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 260 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |