| 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 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::WebGraphicsContext3D::Attributes& attributes, |
| 174 blink::WebGraphicsContext3DProvider* share_provider, | 174 blink::WebGraphicsContext3DProvider* share_provider, |
| 175 blink::Platform::GraphicsInfo* gl_info) override; | 175 blink::Platform::GraphicsInfo* gl_info) override; |
| 176 blink::WebGraphicsContext3DProvider* | 176 blink::WebGraphicsContext3DProvider* |
| 177 createSharedOffscreenGraphicsContext3DProvider() override; | 177 createSharedOffscreenGraphicsContext3DProvider() override; |
| 178 blink::WebCompositorSupport* compositorSupport() override; | 178 blink::WebCompositorSupport* compositorSupport() override; |
| 179 blink::WebString convertIDNToUnicode( | 179 blink::WebString convertIDNToUnicode(const blink::WebString& host) override; |
| 180 const blink::WebString& host, | |
| 181 const blink::WebString& languages) override; | |
| 182 void connectToRemoteService(const char* name, | 180 void connectToRemoteService(const char* name, |
| 183 mojo::ScopedMessagePipeHandle handle) override; | 181 mojo::ScopedMessagePipeHandle handle) override; |
| 184 void startListening(blink::WebPlatformEventType, | 182 void startListening(blink::WebPlatformEventType, |
| 185 blink::WebPlatformEventListener*) override; | 183 blink::WebPlatformEventListener*) override; |
| 186 void stopListening(blink::WebPlatformEventType) override; | 184 void stopListening(blink::WebPlatformEventType) override; |
| 187 void queryStorageUsageAndQuota(const blink::WebURL& storage_partition, | 185 void queryStorageUsageAndQuota(const blink::WebURL& storage_partition, |
| 188 blink::WebStorageQuotaType, | 186 blink::WebStorageQuotaType, |
| 189 blink::WebStorageQuotaCallbacks) override; | 187 blink::WebStorageQuotaCallbacks) override; |
| 190 void vibrate(unsigned int milliseconds) override; | 188 void vibrate(unsigned int milliseconds) override; |
| 191 void cancelVibration() override; | 189 void cancelVibration() override; |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 WebTrialTokenValidatorImpl trial_token_validator_; | 299 WebTrialTokenValidatorImpl trial_token_validator_; |
| 302 | 300 |
| 303 scoped_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; | 301 scoped_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; |
| 304 | 302 |
| 305 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 303 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
| 306 }; | 304 }; |
| 307 | 305 |
| 308 } // namespace content | 306 } // namespace content |
| 309 | 307 |
| 310 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 308 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |