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

Unified Diff: content/renderer/pepper/fake_pepper_plugin_instance.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
Index: content/renderer/pepper/fake_pepper_plugin_instance.h
diff --git a/content/renderer/pepper/fake_pepper_plugin_instance.h b/content/renderer/pepper/fake_pepper_plugin_instance.h
index 99a0cee43a4b4ad22d665fc64b642d7a98d5b7cb..280f888bf13e06e051d890963c9c219d9ea74b2c 100644
--- a/content/renderer/pepper/fake_pepper_plugin_instance.h
+++ b/content/renderer/pepper/fake_pepper_plugin_instance.h
@@ -15,34 +15,34 @@ class FakePepperPluginInstance : public PepperPluginInstance {
virtual ~FakePepperPluginInstance();
// PepperPluginInstance overrides.
- virtual content::RenderView* GetRenderView() OVERRIDE;
- virtual blink::WebPluginContainer* GetContainer() OVERRIDE;
- virtual v8::Isolate* GetIsolate() const OVERRIDE;
- virtual ppapi::VarTracker* GetVarTracker() OVERRIDE;
- virtual const GURL& GetPluginURL() OVERRIDE;
- virtual base::FilePath GetModulePath() OVERRIDE;
+ virtual content::RenderView* GetRenderView() override;
+ virtual blink::WebPluginContainer* GetContainer() override;
+ virtual v8::Isolate* GetIsolate() const override;
+ virtual ppapi::VarTracker* GetVarTracker() override;
+ virtual const GURL& GetPluginURL() override;
+ virtual base::FilePath GetModulePath() override;
virtual PP_Resource CreateImage(gfx::ImageSkia* source_image,
- float scale) OVERRIDE;
+ float scale) override;
virtual PP_ExternalPluginResult SwitchToOutOfProcessProxy(
const base::FilePath& file_path,
ppapi::PpapiPermissions permissions,
const IPC::ChannelHandle& channel_handle,
base::ProcessId plugin_pid,
- int plugin_child_id) OVERRIDE;
- virtual void SetAlwaysOnTop(bool on_top) OVERRIDE;
- virtual bool IsFullPagePlugin() OVERRIDE;
- virtual bool FlashSetFullscreen(bool fullscreen, bool delay_report) OVERRIDE;
- virtual bool IsRectTopmost(const gfx::Rect& rect) OVERRIDE;
+ int plugin_child_id) override;
+ virtual void SetAlwaysOnTop(bool on_top) override;
+ virtual bool IsFullPagePlugin() override;
+ virtual bool FlashSetFullscreen(bool fullscreen, bool delay_report) override;
+ virtual bool IsRectTopmost(const gfx::Rect& rect) override;
virtual int32_t Navigate(const ppapi::URLRequestInfoData& request,
const char* target,
- bool from_user_action) OVERRIDE;
+ bool from_user_action) override;
virtual int MakePendingFileRefRendererHost(const base::FilePath& path)
- OVERRIDE;
- virtual void SetEmbedProperty(PP_Var key, PP_Var value) OVERRIDE;
- virtual void SetSelectedText(const base::string16& selected_text) OVERRIDE;
- virtual void SetLinkUnderCursor(const std::string& url) OVERRIDE;
- virtual void SetTextInputType(ui::TextInputType type) OVERRIDE;
- virtual void PostMessageToJavaScript(PP_Var message) OVERRIDE;
+ override;
+ virtual void SetEmbedProperty(PP_Var key, PP_Var value) override;
+ virtual void SetSelectedText(const base::string16& selected_text) override;
+ virtual void SetLinkUnderCursor(const std::string& url) override;
+ virtual void SetTextInputType(ui::TextInputType type) override;
+ virtual void PostMessageToJavaScript(PP_Var message) override;
private:
GURL gurl_;
« no previous file with comments | « content/renderer/pepper/content_renderer_pepper_host_factory.h ('k') | content/renderer/pepper/host_array_buffer_var.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698