| 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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 blink::WebMediaStream* web_media_stream, | 182 blink::WebMediaStream* web_media_stream, |
| 183 blink::WebMediaPlayer* web_media_player) override; | 183 blink::WebMediaPlayer* web_media_player) override; |
| 184 blink::WebImageCaptureFrameGrabber* createImageCaptureFrameGrabber() override; | 184 blink::WebImageCaptureFrameGrabber* createImageCaptureFrameGrabber() override; |
| 185 blink::WebGraphicsContext3DProvider* createOffscreenGraphicsContext3DProvider( | 185 blink::WebGraphicsContext3DProvider* createOffscreenGraphicsContext3DProvider( |
| 186 const blink::Platform::ContextAttributes& attributes, | 186 const blink::Platform::ContextAttributes& attributes, |
| 187 const blink::WebURL& top_document_web_url, | 187 const blink::WebURL& top_document_web_url, |
| 188 blink::WebGraphicsContext3DProvider* share_provider, | 188 blink::WebGraphicsContext3DProvider* share_provider, |
| 189 blink::Platform::GraphicsInfo* gl_info) override; | 189 blink::Platform::GraphicsInfo* gl_info) override; |
| 190 blink::WebGraphicsContext3DProvider* | 190 blink::WebGraphicsContext3DProvider* |
| 191 createSharedOffscreenGraphicsContext3DProvider() override; | 191 createSharedOffscreenGraphicsContext3DProvider() override; |
| 192 std::unique_ptr<cc::SharedBitmap> allocateSharedBitmap( |
| 193 const blink::WebSize& size) override; |
| 192 blink::WebCompositorSupport* compositorSupport() override; | 194 blink::WebCompositorSupport* compositorSupport() override; |
| 193 blink::WebString convertIDNToUnicode(const blink::WebString& host) override; | 195 blink::WebString convertIDNToUnicode(const blink::WebString& host) override; |
| 194 blink::InterfaceProvider* interfaceProvider() override; | 196 blink::InterfaceProvider* interfaceProvider() override; |
| 195 void startListening(blink::WebPlatformEventType, | 197 void startListening(blink::WebPlatformEventType, |
| 196 blink::WebPlatformEventListener*) override; | 198 blink::WebPlatformEventListener*) override; |
| 197 void stopListening(blink::WebPlatformEventType) override; | 199 void stopListening(blink::WebPlatformEventType) override; |
| 198 void queryStorageUsageAndQuota(const blink::WebURL& storage_partition, | 200 void queryStorageUsageAndQuota(const blink::WebURL& storage_partition, |
| 199 blink::WebStorageQuotaType, | 201 blink::WebStorageQuotaType, |
| 200 blink::WebStorageQuotaCallbacks) override; | 202 blink::WebStorageQuotaCallbacks) override; |
| 201 blink::WebThread* currentThread() override; | 203 blink::WebThread* currentThread() override; |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_; | 309 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_; |
| 308 | 310 |
| 309 mojom::URLLoaderFactoryPtr url_loader_factory_; | 311 mojom::URLLoaderFactoryPtr url_loader_factory_; |
| 310 | 312 |
| 311 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 313 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
| 312 }; | 314 }; |
| 313 | 315 |
| 314 } // namespace content | 316 } // namespace content |
| 315 | 317 |
| 316 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 318 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |