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

Unified Diff: content/renderer/pepper_plugin_delegate_impl.h

Issue 8587009: Add OVERRIDE to content/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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
« no previous file with comments | « content/renderer/pepper_platform_video_decoder_impl.h ('k') | content/renderer/plugin_channel_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 52d657d1f9fbb844a4cc604d662164f609cadab4..d1e830dffb4ea0a78809201b47a49bbfdac6d3e8 100644
--- a/content/renderer/pepper_plugin_delegate_impl.h
+++ b/content/renderer/pepper_plugin_delegate_impl.h
@@ -83,8 +83,8 @@ class PpapiBrokerImpl : public webkit::ppapi::PluginDelegate::PpapiBroker,
PepperPluginDelegateImpl* delegate_);
// PpapiBroker implementation.
- virtual void Connect(webkit::ppapi::PPB_Broker_Impl* client);
- virtual void Disconnect(webkit::ppapi::PPB_Broker_Impl* client);
+ virtual void Connect(webkit::ppapi::PPB_Broker_Impl* client) OVERRIDE;
+ virtual void Disconnect(webkit::ppapi::PPB_Broker_Impl* client) OVERRIDE;
// Called when the channel to the broker has been established.
void OnBrokerChannelConnected(base::ProcessHandle broker_process_handle,
@@ -204,35 +204,35 @@ 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();
+ PlatformAudio::Client* 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,
@@ -356,7 +356,7 @@ class PepperPluginDelegateImpl
}
// Implementation of PepperParentContextProvider.
- virtual RendererGLContext* GetParentContextForPlatformContext3D();
+ virtual RendererGLContext* GetParentContextForPlatformContext3D() OVERRIDE;
// Pointer to the RenderView that owns us.
RenderViewImpl* render_view_;
« no previous file with comments | « content/renderer/pepper_platform_video_decoder_impl.h ('k') | content/renderer/plugin_channel_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698