| 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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 blink::WebMediaStreamCenter* createMediaStreamCenter( | 163 blink::WebMediaStreamCenter* createMediaStreamCenter( |
| 164 blink::WebMediaStreamCenterClient* client) override; | 164 blink::WebMediaStreamCenterClient* client) override; |
| 165 blink::WebCanvasCaptureHandler* createCanvasCaptureHandler( | 165 blink::WebCanvasCaptureHandler* createCanvasCaptureHandler( |
| 166 const blink::WebSize& size, | 166 const blink::WebSize& size, |
| 167 double frame_rate, | 167 double frame_rate, |
| 168 blink::WebMediaStreamTrack* track) override; | 168 blink::WebMediaStreamTrack* track) override; |
| 169 void createHTMLVideoElementCapturer( | 169 void createHTMLVideoElementCapturer( |
| 170 blink::WebMediaStream* web_media_stream, | 170 blink::WebMediaStream* web_media_stream, |
| 171 blink::WebMediaPlayer* web_media_player) override; | 171 blink::WebMediaPlayer* web_media_player) override; |
| 172 blink::WebGraphicsContext3DProvider* createOffscreenGraphicsContext3DProvider( | 172 blink::WebGraphicsContext3DProvider* createOffscreenGraphicsContext3DProvider( |
| 173 const blink::WebGraphicsContext3D::Attributes& attributes, | 173 const blink::Platform::ContextAttributes& attributes, |
| 174 const blink::WebURL& top_document_web_url, |
| 174 blink::WebGraphicsContext3DProvider* share_provider, | 175 blink::WebGraphicsContext3DProvider* share_provider, |
| 175 blink::Platform::GraphicsInfo* gl_info) override; | 176 blink::Platform::GraphicsInfo* gl_info) override; |
| 176 blink::WebGraphicsContext3DProvider* | 177 blink::WebGraphicsContext3DProvider* |
| 177 createSharedOffscreenGraphicsContext3DProvider() override; | 178 createSharedOffscreenGraphicsContext3DProvider() override; |
| 178 blink::WebCompositorSupport* compositorSupport() override; | 179 blink::WebCompositorSupport* compositorSupport() override; |
| 179 blink::WebString convertIDNToUnicode( | 180 blink::WebString convertIDNToUnicode( |
| 180 const blink::WebString& host, | 181 const blink::WebString& host, |
| 181 const blink::WebString& languages) override; | 182 const blink::WebString& languages) override; |
| 182 void connectToRemoteService(const char* name, | 183 void connectToRemoteService(const char* name, |
| 183 mojo::ScopedMessagePipeHandle handle) override; | 184 mojo::ScopedMessagePipeHandle handle) override; |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 WebTrialTokenValidatorImpl trial_token_validator_; | 302 WebTrialTokenValidatorImpl trial_token_validator_; |
| 302 | 303 |
| 303 scoped_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; | 304 scoped_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; |
| 304 | 305 |
| 305 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 306 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
| 306 }; | 307 }; |
| 307 | 308 |
| 308 } // namespace content | 309 } // namespace content |
| 309 | 310 |
| 310 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 311 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |