| 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_WEBKITPLATFORMSUPPORT_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/platform_file.h" | 10 #include "base/platform_file.h" |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 blink::WebAudioBus* destination_bus, const char* audio_file_data, | 124 blink::WebAudioBus* destination_bus, const char* audio_file_data, |
| 125 size_t data_size, double sample_rate); | 125 size_t data_size, double sample_rate); |
| 126 | 126 |
| 127 virtual blink::WebContentDecryptionModule* createContentDecryptionModule( | 127 virtual blink::WebContentDecryptionModule* createContentDecryptionModule( |
| 128 const blink::WebString& key_system); | 128 const blink::WebString& key_system); |
| 129 virtual blink::WebMIDIAccessor* | 129 virtual blink::WebMIDIAccessor* |
| 130 createMIDIAccessor(blink::WebMIDIAccessorClient* client); | 130 createMIDIAccessor(blink::WebMIDIAccessorClient* client); |
| 131 | 131 |
| 132 virtual blink::WebBlobRegistry* blobRegistry(); | 132 virtual blink::WebBlobRegistry* blobRegistry(); |
| 133 virtual void sampleGamepads(blink::WebGamepads&); | 133 virtual void sampleGamepads(blink::WebGamepads&); |
| 134 virtual void setGamepadListener(blink::WebGamepadListener* listener); |
| 134 virtual blink::WebRTCPeerConnectionHandler* createRTCPeerConnectionHandler( | 135 virtual blink::WebRTCPeerConnectionHandler* createRTCPeerConnectionHandler( |
| 135 blink::WebRTCPeerConnectionHandlerClient* client); | 136 blink::WebRTCPeerConnectionHandlerClient* client); |
| 136 virtual blink::WebMediaStreamCenter* createMediaStreamCenter( | 137 virtual blink::WebMediaStreamCenter* createMediaStreamCenter( |
| 137 blink::WebMediaStreamCenterClient* client); | 138 blink::WebMediaStreamCenterClient* client); |
| 138 virtual bool processMemorySizesInBytes( | 139 virtual bool processMemorySizesInBytes( |
| 139 size_t* private_bytes, size_t* shared_bytes); | 140 size_t* private_bytes, size_t* shared_bytes); |
| 140 virtual blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( | 141 virtual blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( |
| 141 #ifdef ENABLE_EXPLICIT_GL_SHARE_GROUPS | 142 #ifdef ENABLE_EXPLICIT_GL_SHARE_GROUPS |
| 142 const blink::WebGraphicsContext3D::Attributes& attributes, | 143 const blink::WebGraphicsContext3D::Attributes& attributes, |
| 143 blink::WebGraphicsContext3D* share_context); | 144 blink::WebGraphicsContext3D* share_context); |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 scoped_ptr<ScreenOrientationDispatcher> screen_orientation_dispatcher_; | 233 scoped_ptr<ScreenOrientationDispatcher> screen_orientation_dispatcher_; |
| 233 | 234 |
| 234 scoped_ptr<blink::WebScrollbarBehavior> web_scrollbar_behavior_; | 235 scoped_ptr<blink::WebScrollbarBehavior> web_scrollbar_behavior_; |
| 235 | 236 |
| 236 DISALLOW_COPY_AND_ASSIGN(RendererWebKitPlatformSupportImpl); | 237 DISALLOW_COPY_AND_ASSIGN(RendererWebKitPlatformSupportImpl); |
| 237 }; | 238 }; |
| 238 | 239 |
| 239 } // namespace content | 240 } // namespace content |
| 240 | 241 |
| 241 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 242 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
| OLD | NEW |