Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3363)

Unified Diff: content/renderer/pepper_plugin_delegate_impl.h

Issue 8574029: Microphone support for Pepper Flash. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: refactor, part 1 Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/renderer/pepper_plugin_delegate_impl.h
diff --git a/content/renderer/pepper_plugin_delegate_impl.h b/content/renderer/pepper_plugin_delegate_impl.h
index ca9cddab223063e405c0f8f5f55d22f395681c35..c380bcc3e2256e3455af92997959e68fb6465388 100644
--- a/content/renderer/pepper_plugin_delegate_impl.h
+++ b/content/renderer/pepper_plugin_delegate_impl.h
@@ -204,35 +204,39 @@ class PepperPluginDelegateImpl
webkit::ppapi::PluginInstance* instance) OVERRIDE;
virtual void PluginRequestedCancelComposition(
webkit::ppapi::PluginInstance* instance) OVERRIDE;
- virtual void PluginCrashed(webkit::ppapi::PluginInstance* instance);
+ virtual void PluginCrashed(webkit::ppapi::PluginInstance* instance) OVERRIDE;
virtual void InstanceCreated(
- webkit::ppapi::PluginInstance* instance);
+ webkit::ppapi::PluginInstance* instance) OVERRIDE;
virtual void InstanceDeleted(
- webkit::ppapi::PluginInstance* instance);
- virtual SkBitmap* GetSadPluginBitmap();
+ webkit::ppapi::PluginInstance* instance) OVERRIDE;
+ virtual SkBitmap* GetSadPluginBitmap() OVERRIDE;
virtual PlatformAudio* CreateAudio(
uint32_t sample_rate,
uint32_t sample_count,
- PlatformAudio::Client* client);
- virtual PlatformImage2D* CreateImage2D(int width, int height);
- virtual PlatformContext3D* CreateContext3D();
+ PlatformAudioCommonClient* client) OVERRIDE;
+ virtual PlatformAudioInput* CreateAudioInput(
+ uint32_t sample_rate,
+ uint32_t sample_count,
+ PlatformAudioCommonClient* client) OVERRIDE;
+ virtual PlatformImage2D* CreateImage2D(int width, int height) OVERRIDE;
+ virtual PlatformContext3D* CreateContext3D() OVERRIDE;
virtual PlatformVideoCapture* CreateVideoCapture(
media::VideoCapture::EventHandler* handler) OVERRIDE;
virtual PlatformVideoDecoder* CreateVideoDecoder(
media::VideoDecodeAccelerator::Client* client,
- int32 command_buffer_route_id);
+ int32 command_buffer_route_id) OVERRIDE;
virtual PpapiBroker* ConnectToPpapiBroker(
- webkit::ppapi::PPB_Broker_Impl* client);
+ webkit::ppapi::PPB_Broker_Impl* client) OVERRIDE;
virtual void NumberOfFindResultsChanged(int identifier,
int total,
- bool final_result);
- virtual void SelectedFindResultChanged(int identifier, int index);
+ bool final_result) OVERRIDE;
+ virtual void SelectedFindResultChanged(int identifier, int index) OVERRIDE;
virtual bool RunFileChooser(
const WebKit::WebFileChooserParams& params,
- WebKit::WebFileChooserCompletion* chooser_completion);
+ WebKit::WebFileChooserCompletion* chooser_completion) OVERRIDE;
virtual bool AsyncOpenFile(const FilePath& path,
int flags,
- const AsyncOpenFileCallback& callback);
+ const AsyncOpenFileCallback& callback) OVERRIDE;
virtual bool AsyncOpenFileSystemURL(
const GURL& path,
int flags,
« no previous file with comments | « no previous file | content/renderer/pepper_plugin_delegate_impl.cc » ('j') | content/renderer/pepper_plugin_delegate_impl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698