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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 virtual void PluginRequestedCancelComposition( | 161 virtual void PluginRequestedCancelComposition( |
162 webkit::ppapi::PluginInstance* instance) OVERRIDE; | 162 webkit::ppapi::PluginInstance* instance) OVERRIDE; |
163 virtual void PluginSelectionChanged( | 163 virtual void PluginSelectionChanged( |
164 webkit::ppapi::PluginInstance* instance) OVERRIDE; | 164 webkit::ppapi::PluginInstance* instance) OVERRIDE; |
165 virtual void PluginCrashed(webkit::ppapi::PluginInstance* instance) OVERRIDE; | 165 virtual void PluginCrashed(webkit::ppapi::PluginInstance* instance) OVERRIDE; |
166 virtual void InstanceCreated( | 166 virtual void InstanceCreated( |
167 webkit::ppapi::PluginInstance* instance) OVERRIDE; | 167 webkit::ppapi::PluginInstance* instance) OVERRIDE; |
168 virtual void InstanceDeleted( | 168 virtual void InstanceDeleted( |
169 webkit::ppapi::PluginInstance* instance) OVERRIDE; | 169 webkit::ppapi::PluginInstance* instance) OVERRIDE; |
170 virtual SkBitmap* GetSadPluginBitmap() OVERRIDE; | 170 virtual SkBitmap* GetSadPluginBitmap() OVERRIDE; |
171 virtual WebKit::WebPlugin* CreatePluginReplacement( | |
172 const FilePath& file_path) OVERRIDE; | |
173 virtual uint32_t GetAudioHardwareOutputSampleRate() OVERRIDE; | 171 virtual uint32_t GetAudioHardwareOutputSampleRate() OVERRIDE; |
174 virtual uint32_t GetAudioHardwareOutputBufferSize() OVERRIDE; | 172 virtual uint32_t GetAudioHardwareOutputBufferSize() OVERRIDE; |
175 virtual PlatformAudioOutput* CreateAudioOutput( | 173 virtual PlatformAudioOutput* CreateAudioOutput( |
176 uint32_t sample_rate, | 174 uint32_t sample_rate, |
177 uint32_t sample_count, | 175 uint32_t sample_count, |
178 PlatformAudioOutputClient* client) OVERRIDE; | 176 PlatformAudioOutputClient* client) OVERRIDE; |
179 virtual PlatformAudioInput* CreateAudioInput( | 177 virtual PlatformAudioInput* CreateAudioInput( |
180 const std::string& device_id, | 178 const std::string& device_id, |
181 uint32_t sample_rate, | 179 uint32_t sample_rate, |
182 uint32_t sample_count, | 180 uint32_t sample_count, |
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
494 | 492 |
495 scoped_ptr<PepperDeviceEnumerationEventHandler> | 493 scoped_ptr<PepperDeviceEnumerationEventHandler> |
496 device_enumeration_event_handler_; | 494 device_enumeration_event_handler_; |
497 | 495 |
498 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); | 496 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); |
499 }; | 497 }; |
500 | 498 |
501 } // namespace content | 499 } // namespace content |
502 | 500 |
503 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ | 501 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ |
OLD | NEW |