| 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_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ |
| 6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ | 6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 uint32_t sample_rate, | 195 uint32_t sample_rate, |
| 196 uint32_t sample_count, | 196 uint32_t sample_count, |
| 197 PlatformAudioOutputClient* client) OVERRIDE; | 197 PlatformAudioOutputClient* client) OVERRIDE; |
| 198 virtual PlatformAudioInput* CreateAudioInput( | 198 virtual PlatformAudioInput* CreateAudioInput( |
| 199 const std::string& device_id, | 199 const std::string& device_id, |
| 200 uint32_t sample_rate, | 200 uint32_t sample_rate, |
| 201 uint32_t sample_count, | 201 uint32_t sample_count, |
| 202 PlatformAudioInputClient* client) OVERRIDE; | 202 PlatformAudioInputClient* client) OVERRIDE; |
| 203 virtual PlatformImage2D* CreateImage2D(int width, int height) OVERRIDE; | 203 virtual PlatformImage2D* CreateImage2D(int width, int height) OVERRIDE; |
| 204 virtual PlatformContext3D* CreateContext3D() OVERRIDE; | 204 virtual PlatformContext3D* CreateContext3D() OVERRIDE; |
| 205 virtual void ReparentContext(PlatformContext3D*) OVERRIDE; |
| 205 virtual PlatformVideoCapture* CreateVideoCapture( | 206 virtual PlatformVideoCapture* CreateVideoCapture( |
| 206 const std::string& device_id, | 207 const std::string& device_id, |
| 207 PlatformVideoCaptureEventHandler* handler) OVERRIDE; | 208 PlatformVideoCaptureEventHandler* handler) OVERRIDE; |
| 208 virtual PlatformVideoDecoder* CreateVideoDecoder( | 209 virtual PlatformVideoDecoder* CreateVideoDecoder( |
| 209 media::VideoDecodeAccelerator::Client* client, | 210 media::VideoDecodeAccelerator::Client* client, |
| 210 int32 command_buffer_route_id) OVERRIDE; | 211 int32 command_buffer_route_id) OVERRIDE; |
| 211 virtual Broker* ConnectToBroker( | 212 virtual Broker* ConnectToBroker( |
| 212 webkit::ppapi::PPB_Broker_Impl* client) OVERRIDE; | 213 webkit::ppapi::PPB_Broker_Impl* client) OVERRIDE; |
| 213 virtual void NumberOfFindResultsChanged(int identifier, | 214 virtual void NumberOfFindResultsChanged(int identifier, |
| 214 int total, | 215 int total, |
| (...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 528 | 529 |
| 529 scoped_ptr<PepperDeviceEnumerationEventHandler> | 530 scoped_ptr<PepperDeviceEnumerationEventHandler> |
| 530 device_enumeration_event_handler_; | 531 device_enumeration_event_handler_; |
| 531 | 532 |
| 532 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); | 533 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); |
| 533 }; | 534 }; |
| 534 | 535 |
| 535 } // namespace content | 536 } // namespace content |
| 536 | 537 |
| 537 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ | 538 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ |
| OLD | NEW |