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

Unified Diff: content/browser/renderer_host/pepper/browser_ppapi_host_impl.h

Issue 616603004: Replacing the OVERRIDE with override and FINAL with final in content/browser/renderer_host (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch Created 6 years, 2 months 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/browser/renderer_host/pepper/browser_ppapi_host_impl.h
diff --git a/content/browser/renderer_host/pepper/browser_ppapi_host_impl.h b/content/browser/renderer_host/pepper/browser_ppapi_host_impl.h
index 43ae426705f51dfe339b3c4a952735ac2b50110e..932fb0973ac08f9cbbc12eb32b641452dee4cc0a 100644
--- a/content/browser/renderer_host/pepper/browser_ppapi_host_impl.h
+++ b/content/browser/renderer_host/pepper/browser_ppapi_host_impl.h
@@ -45,20 +45,20 @@ class CONTENT_EXPORT BrowserPpapiHostImpl : public BrowserPpapiHost {
virtual ~BrowserPpapiHostImpl();
// BrowserPpapiHost.
- virtual ppapi::host::PpapiHost* GetPpapiHost() OVERRIDE;
- virtual base::ProcessHandle GetPluginProcessHandle() const OVERRIDE;
- virtual bool IsValidInstance(PP_Instance instance) const OVERRIDE;
+ virtual ppapi::host::PpapiHost* GetPpapiHost() override;
+ virtual base::ProcessHandle GetPluginProcessHandle() const override;
+ virtual bool IsValidInstance(PP_Instance instance) const override;
virtual bool GetRenderFrameIDsForInstance(PP_Instance instance,
int* render_process_id,
int* render_frame_id) const
- OVERRIDE;
- virtual const std::string& GetPluginName() OVERRIDE;
- virtual const base::FilePath& GetPluginPath() OVERRIDE;
- virtual const base::FilePath& GetProfileDataDirectory() OVERRIDE;
- virtual GURL GetDocumentURLForInstance(PP_Instance instance) OVERRIDE;
- virtual GURL GetPluginURLForInstance(PP_Instance instance) OVERRIDE;
+ override;
+ virtual const std::string& GetPluginName() override;
+ virtual const base::FilePath& GetPluginPath() override;
+ virtual const base::FilePath& GetProfileDataDirectory() override;
+ virtual GURL GetDocumentURLForInstance(PP_Instance instance) override;
+ virtual GURL GetPluginURLForInstance(PP_Instance instance) override;
virtual void SetOnKeepaliveCallback(
- const BrowserPpapiHost::OnKeepaliveCallback& callback) OVERRIDE;
+ const BrowserPpapiHost::OnKeepaliveCallback& callback) override;
void set_plugin_process_handle(base::ProcessHandle handle) {
plugin_process_handle_ = handle;
@@ -93,7 +93,7 @@ class CONTENT_EXPORT BrowserPpapiHostImpl : public BrowserPpapiHost {
BrowserPpapiHostImpl* browser_ppapi_host_impl);
// IPC::MessageFilter.
- virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE;
+ virtual bool OnMessageReceived(const IPC::Message& msg) override;
void OnHostDestroyed();

Powered by Google App Engine
This is Rietveld 408576698