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

Unified Diff: content/renderer/pepper/renderer_ppapi_host_impl.h

Issue 633303002: Replace FINAL and OVERRIDE with their C++11 counterparts in content/renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « content/renderer/pepper/ppb_widget_impl.h ('k') | content/renderer/pepper/resource_converter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/pepper/renderer_ppapi_host_impl.h
diff --git a/content/renderer/pepper/renderer_ppapi_host_impl.h b/content/renderer/pepper/renderer_ppapi_host_impl.h
index a30735dc3c4f359b902d9c242dfca4f939086563..dbca882680dce1b7b39e8780286be7b998bd32b2 100644
--- a/content/renderer/pepper/renderer_ppapi_host_impl.h
+++ b/content/renderer/pepper/renderer_ppapi_host_impl.h
@@ -76,34 +76,34 @@ class RendererPpapiHostImpl : public RendererPpapiHost {
bool IsExternalPluginHost() const;
// RendererPpapiHost implementation.
- virtual ppapi::host::PpapiHost* GetPpapiHost() OVERRIDE;
- virtual bool IsValidInstance(PP_Instance instance) const OVERRIDE;
+ virtual ppapi::host::PpapiHost* GetPpapiHost() override;
+ virtual bool IsValidInstance(PP_Instance instance) const override;
virtual PepperPluginInstance* GetPluginInstance(PP_Instance instance) const
- OVERRIDE;
+ override;
virtual RenderFrame* GetRenderFrameForInstance(PP_Instance instance) const
- OVERRIDE;
+ override;
virtual RenderView* GetRenderViewForInstance(PP_Instance instance) const
- OVERRIDE;
+ override;
virtual blink::WebPluginContainer* GetContainerForInstance(
- PP_Instance instance) const OVERRIDE;
- virtual base::ProcessId GetPluginPID() const OVERRIDE;
- virtual bool HasUserGesture(PP_Instance instance) const OVERRIDE;
- virtual int GetRoutingIDForWidget(PP_Instance instance) const OVERRIDE;
+ PP_Instance instance) const override;
+ virtual base::ProcessId GetPluginPID() const override;
+ virtual bool HasUserGesture(PP_Instance instance) const override;
+ virtual int GetRoutingIDForWidget(PP_Instance instance) const override;
virtual gfx::Point PluginPointToRenderFrame(PP_Instance instance,
const gfx::Point& pt) const
- OVERRIDE;
+ override;
virtual IPC::PlatformFileForTransit ShareHandleWithRemote(
base::PlatformFile handle,
- bool should_close_source) OVERRIDE;
- virtual bool IsRunningInProcess() const OVERRIDE;
- virtual std::string GetPluginName() const OVERRIDE;
- virtual void SetToExternalPluginHost() OVERRIDE;
+ bool should_close_source) override;
+ virtual bool IsRunningInProcess() const override;
+ virtual std::string GetPluginName() const override;
+ virtual void SetToExternalPluginHost() override;
virtual void CreateBrowserResourceHosts(
PP_Instance instance,
const std::vector<IPC::Message>& nested_msgs,
const base::Callback<void(const std::vector<int>&)>& callback) const
- OVERRIDE;
- virtual GURL GetDocumentURL(PP_Instance instance) const OVERRIDE;
+ override;
+ virtual GURL GetDocumentURL(PP_Instance instance) const override;
private:
RendererPpapiHostImpl(PluginModule* module,
« no previous file with comments | « content/renderer/pepper/ppb_widget_impl.h ('k') | content/renderer/pepper/resource_converter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698