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 <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 double frame_rate, | 169 double frame_rate, |
170 blink::WebMediaStreamTrack* track) override; | 170 blink::WebMediaStreamTrack* track) override; |
171 void createHTMLVideoElementCapturer( | 171 void createHTMLVideoElementCapturer( |
172 blink::WebMediaStream* web_media_stream, | 172 blink::WebMediaStream* web_media_stream, |
173 blink::WebMediaPlayer* web_media_player) override; | 173 blink::WebMediaPlayer* web_media_player) override; |
174 blink::WebImageCaptureFrameGrabber* createImageCaptureFrameGrabber() override; | 174 blink::WebImageCaptureFrameGrabber* createImageCaptureFrameGrabber() override; |
175 blink::WebGraphicsContext3DProvider* createOffscreenGraphicsContext3DProvider( | 175 blink::WebGraphicsContext3DProvider* createOffscreenGraphicsContext3DProvider( |
176 const blink::Platform::ContextAttributes& attributes, | 176 const blink::Platform::ContextAttributes& attributes, |
177 const blink::WebURL& top_document_web_url, | 177 const blink::WebURL& top_document_web_url, |
178 blink::WebGraphicsContext3DProvider* share_provider, | 178 blink::WebGraphicsContext3DProvider* share_provider, |
179 blink::Platform::GraphicsInfo* gl_info) override; | 179 blink::Platform::GraphicsInfo* gl_info, |
| 180 blink::Platform::WillBindToCurrentThread) override; |
180 blink::WebGraphicsContext3DProvider* | 181 blink::WebGraphicsContext3DProvider* |
181 createSharedOffscreenGraphicsContext3DProvider() override; | 182 createSharedOffscreenGraphicsContext3DProvider() override; |
182 blink::WebCompositorSupport* compositorSupport() override; | 183 blink::WebCompositorSupport* compositorSupport() override; |
183 blink::WebString convertIDNToUnicode(const blink::WebString& host) override; | 184 blink::WebString convertIDNToUnicode(const blink::WebString& host) override; |
184 blink::ServiceRegistry* serviceRegistry() override; | 185 blink::ServiceRegistry* serviceRegistry() override; |
185 void startListening(blink::WebPlatformEventType, | 186 void startListening(blink::WebPlatformEventType, |
186 blink::WebPlatformEventListener*) override; | 187 blink::WebPlatformEventListener*) override; |
187 void stopListening(blink::WebPlatformEventType) override; | 188 void stopListening(blink::WebPlatformEventType) override; |
188 void queryStorageUsageAndQuota(const blink::WebURL& storage_partition, | 189 void queryStorageUsageAndQuota(const blink::WebURL& storage_partition, |
189 blink::WebStorageQuotaType, | 190 blink::WebStorageQuotaType, |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
304 std::unique_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; | 305 std::unique_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; |
305 | 306 |
306 std::unique_ptr<BlinkServiceRegistryImpl> blink_service_registry_; | 307 std::unique_ptr<BlinkServiceRegistryImpl> blink_service_registry_; |
307 | 308 |
308 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 309 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
309 }; | 310 }; |
310 | 311 |
311 } // namespace content | 312 } // namespace content |
312 | 313 |
313 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 314 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
OLD | NEW |