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