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::WebCookieJar* cookieJar(); | 69 virtual blink::WebCookieJar* cookieJar(); |
70 virtual blink::WebThemeEngine* themeEngine(); | 70 virtual blink::WebThemeEngine* themeEngine(); |
71 virtual blink::WebSpeechSynthesizer* createSpeechSynthesizer( | 71 virtual blink::WebSpeechSynthesizer* createSpeechSynthesizer( |
72 blink::WebSpeechSynthesizerClient* client); | 72 blink::WebSpeechSynthesizerClient* client); |
73 virtual bool sandboxEnabled(); | 73 virtual bool sandboxEnabled(); |
74 virtual unsigned long long visitedLinkHash( | 74 virtual unsigned long long visitedLinkHash( |
75 const char* canonicalURL, size_t length); | 75 const char* canonicalURL, size_t length); |
76 virtual bool isLinkVisited(unsigned long long linkHash); | 76 virtual bool isLinkVisited(unsigned long long linkHash); |
77 virtual void createMessageChannel(blink::WebMessagePortChannel** channel1, | 77 virtual void createMessageChannel(blink::WebMessagePortChannel** channel1, |
78 blink::WebMessagePortChannel** channel2); | 78 blink::WebMessagePortChannel** channel2); |
79 virtual blink::WebMediaSession* createMediaSession(); | |
whywhat
2015/07/30 14:31:22
As I understand, hanging media session from BlinkP
philipj_slow
2015/07/30 14:47:04
Even though Blink-created MediaSessions won't have
mlamouri (slow - plz ping)
2015/08/05 15:50:16
As Anton pointed, RenderBlinkPlatformImpl isn't th
| |
79 virtual blink::WebPrescientNetworking* prescientNetworking(); | 80 virtual blink::WebPrescientNetworking* prescientNetworking(); |
80 virtual void cacheMetadata(const blink::WebURL&, int64, 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( |
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
260 device::VibrationManagerPtr vibration_manager_; | 261 device::VibrationManagerPtr vibration_manager_; |
261 | 262 |
262 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; | 263 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; |
263 | 264 |
264 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 265 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
265 }; | 266 }; |
266 | 267 |
267 } // namespace content | 268 } // namespace content |
268 | 269 |
269 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 270 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
OLD | NEW |