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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 void sampleGamepads(blink::WebGamepads&) override; | 139 void sampleGamepads(blink::WebGamepads&) override; |
140 blink::WebRTCPeerConnectionHandler* createRTCPeerConnectionHandler( | 140 blink::WebRTCPeerConnectionHandler* createRTCPeerConnectionHandler( |
141 blink::WebRTCPeerConnectionHandlerClient* client) override; | 141 blink::WebRTCPeerConnectionHandlerClient* client) override; |
142 blink::WebRTCCertificateGenerator* createRTCCertificateGenerator() override; | 142 blink::WebRTCCertificateGenerator* createRTCCertificateGenerator() override; |
143 blink::WebMediaRecorderHandler* createMediaRecorderHandler() override; | 143 blink::WebMediaRecorderHandler* createMediaRecorderHandler() override; |
144 blink::WebMediaStreamCenter* createMediaStreamCenter( | 144 blink::WebMediaStreamCenter* createMediaStreamCenter( |
145 blink::WebMediaStreamCenterClient* client) override; | 145 blink::WebMediaStreamCenterClient* client) override; |
146 blink::WebCanvasCaptureHandler* createCanvasCaptureHandler( | 146 blink::WebCanvasCaptureHandler* createCanvasCaptureHandler( |
147 const blink::WebSize& size, | 147 const blink::WebSize& size, |
148 double frame_rate, | 148 double frame_rate, |
149 blink::WebMediaStream* stream) override; | 149 blink::WebMediaStreamTrack* track) override; |
150 blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( | 150 blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( |
151 const blink::WebGraphicsContext3D::Attributes& attributes) override; | 151 const blink::WebGraphicsContext3D::Attributes& attributes) override; |
152 blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( | 152 blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( |
153 const blink::WebGraphicsContext3D::Attributes& attributes, | 153 const blink::WebGraphicsContext3D::Attributes& attributes, |
154 blink::WebGraphicsContext3D* share_context) override; | 154 blink::WebGraphicsContext3D* share_context) override; |
155 blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( | 155 blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( |
156 const blink::WebGraphicsContext3D::Attributes& attributes, | 156 const blink::WebGraphicsContext3D::Attributes& attributes, |
157 blink::WebGraphicsContext3D* share_context, | 157 blink::WebGraphicsContext3D* share_context, |
158 blink::WebGraphicsContext3D::WebGraphicsInfo* gl_info) override; | 158 blink::WebGraphicsContext3D::WebGraphicsInfo* gl_info) override; |
159 blink::WebGraphicsContext3DProvider* | 159 blink::WebGraphicsContext3DProvider* |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
282 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; | 282 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; |
283 | 283 |
284 scheduler::RendererScheduler* renderer_scheduler_; // NOT OWNED | 284 scheduler::RendererScheduler* renderer_scheduler_; // NOT OWNED |
285 | 285 |
286 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 286 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
287 }; | 287 }; |
288 | 288 |
289 } // namespace content | 289 } // namespace content |
290 | 290 |
291 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 291 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
OLD | NEW |