| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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( | 79 virtual void cacheMetadata( |
| 80 const blink::WebURL&, double, const char*, size_t); | 80 const blink::WebURL&, double, const char*, size_t); |
| 81 virtual void cacheMetadata(const blink::WebURL&, int64, const char*, size_t); |
| 81 virtual blink::WebString defaultLocale(); | 82 virtual blink::WebString defaultLocale(); |
| 82 virtual void suddenTerminationChanged(bool enabled); | 83 virtual void suddenTerminationChanged(bool enabled); |
| 83 virtual blink::WebStorageNamespace* createLocalStorageNamespace(); | 84 virtual blink::WebStorageNamespace* createLocalStorageNamespace(); |
| 84 virtual blink::Platform::FileHandle databaseOpenFile( | 85 virtual blink::Platform::FileHandle databaseOpenFile( |
| 85 const blink::WebString& vfs_file_name, int desired_flags); | 86 const blink::WebString& vfs_file_name, int desired_flags); |
| 86 virtual int databaseDeleteFile(const blink::WebString& vfs_file_name, | 87 virtual int databaseDeleteFile(const blink::WebString& vfs_file_name, |
| 87 bool sync_dir); | 88 bool sync_dir); |
| 88 virtual long databaseGetFileAttributes( | 89 virtual long databaseGetFileAttributes( |
| 89 const blink::WebString& vfs_file_name); | 90 const blink::WebString& vfs_file_name); |
| 90 virtual long long databaseGetFileSize( | 91 virtual long long databaseGetFileSize( |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 device::VibrationManagerPtr vibration_manager_; | 253 device::VibrationManagerPtr vibration_manager_; |
| 253 | 254 |
| 254 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; | 255 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; |
| 255 | 256 |
| 256 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 257 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
| 257 }; | 258 }; |
| 258 | 259 |
| 259 } // namespace content | 260 } // namespace content |
| 260 | 261 |
| 261 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 262 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |