| 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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 blink::WebMIDIAccessorClient* client) override; | 134 blink::WebMIDIAccessorClient* client) override; |
| 135 | 135 |
| 136 blink::WebBlobRegistry* blobRegistry() override; | 136 blink::WebBlobRegistry* blobRegistry() override; |
| 137 void sampleGamepads(blink::WebGamepads&) override; | 137 void sampleGamepads(blink::WebGamepads&) override; |
| 138 blink::WebRTCPeerConnectionHandler* createRTCPeerConnectionHandler( | 138 blink::WebRTCPeerConnectionHandler* createRTCPeerConnectionHandler( |
| 139 blink::WebRTCPeerConnectionHandlerClient* client) override; | 139 blink::WebRTCPeerConnectionHandlerClient* client) override; |
| 140 blink::WebRTCCertificateGenerator* createRTCCertificateGenerator() override; | 140 blink::WebRTCCertificateGenerator* createRTCCertificateGenerator() override; |
| 141 blink::WebMediaRecorderHandler* createMediaRecorderHandler() override; | 141 blink::WebMediaRecorderHandler* createMediaRecorderHandler() override; |
| 142 blink::WebMediaStreamCenter* createMediaStreamCenter( | 142 blink::WebMediaStreamCenter* createMediaStreamCenter( |
| 143 blink::WebMediaStreamCenterClient* client) override; | 143 blink::WebMediaStreamCenterClient* client) override; |
| 144 bool processMemorySizesInBytes(size_t* private_bytes, | |
| 145 size_t* shared_bytes) override; | |
| 146 blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( | 144 blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( |
| 147 const blink::WebGraphicsContext3D::Attributes& attributes) override; | 145 const blink::WebGraphicsContext3D::Attributes& attributes) override; |
| 148 blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( | 146 blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( |
| 149 const blink::WebGraphicsContext3D::Attributes& attributes, | 147 const blink::WebGraphicsContext3D::Attributes& attributes, |
| 150 blink::WebGraphicsContext3D* share_context) override; | 148 blink::WebGraphicsContext3D* share_context) override; |
| 151 blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( | 149 blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( |
| 152 const blink::WebGraphicsContext3D::Attributes& attributes, | 150 const blink::WebGraphicsContext3D::Attributes& attributes, |
| 153 blink::WebGraphicsContext3D* share_context, | 151 blink::WebGraphicsContext3D* share_context, |
| 154 blink::WebGraphicsContext3D::WebGraphicsInfo* gl_info) override; | 152 blink::WebGraphicsContext3D::WebGraphicsInfo* gl_info) override; |
| 155 blink::WebGraphicsContext3DProvider* | 153 blink::WebGraphicsContext3DProvider* |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; | 276 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; |
| 279 | 277 |
| 280 scheduler::RendererScheduler* renderer_scheduler_; // NOT OWNED | 278 scheduler::RendererScheduler* renderer_scheduler_; // NOT OWNED |
| 281 | 279 |
| 282 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 280 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
| 283 }; | 281 }; |
| 284 | 282 |
| 285 } // namespace content | 283 } // namespace content |
| 286 | 284 |
| 287 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 285 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |