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

Unified Diff: extensions/browser/guest_view/guest_view_base.h

Issue 622343002: replace OVERRIDE and FINAL with override and final in extensions/ (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 | « extensions/browser/guest_view/guest_view.h ('k') | extensions/browser/guest_view/guest_view_base.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/guest_view/guest_view_base.h
diff --git a/extensions/browser/guest_view/guest_view_base.h b/extensions/browser/guest_view/guest_view_base.h
index 7c3bd43715ee303f25b62b726d7e4a95e9b7dc4f..5fa901319f82b01088622e0381d4c073001f10d5 100644
--- a/extensions/browser/guest_view/guest_view_base.h
+++ b/extensions/browser/guest_view/guest_view_base.h
@@ -235,19 +235,19 @@ class GuestViewBase : public content::BrowserPluginGuestDelegate,
virtual void RenderProcessExited(content::RenderProcessHost* host,
base::ProcessHandle handle,
base::TerminationStatus status,
- int exit_code) OVERRIDE;
+ int exit_code) override;
// BrowserPluginGuestDelegate implementation.
- virtual void DidAttach(int guest_proxy_routing_id) OVERRIDE FINAL;
+ virtual void DidAttach(int guest_proxy_routing_id) override final;
virtual void ElementSizeChanged(const gfx::Size& old_size,
- const gfx::Size& new_size) OVERRIDE FINAL;
+ const gfx::Size& new_size) override final;
virtual void GuestSizeChanged(const gfx::Size& old_size,
- const gfx::Size& new_size) OVERRIDE FINAL;
+ const gfx::Size& new_size) override final;
virtual void RegisterDestructionCallback(
- const DestructionCallback& callback) OVERRIDE FINAL;
+ const DestructionCallback& callback) override final;
virtual void WillAttach(
content::WebContents* embedder_web_contents,
- int browser_plugin_instance_id) OVERRIDE FINAL;
+ int browser_plugin_instance_id) override final;
// Dispatches an event |event_name| to the embedder with the |event| fields.
void DispatchEventToEmbedder(Event* event);
@@ -272,21 +272,21 @@ class GuestViewBase : public content::BrowserPluginGuestDelegate,
// WebContentsObserver implementation.
virtual void DidStopLoading(
- content::RenderViewHost* render_view_host) OVERRIDE FINAL;
- virtual void RenderViewReady() OVERRIDE FINAL;
- virtual void WebContentsDestroyed() OVERRIDE FINAL;
+ content::RenderViewHost* render_view_host) override final;
+ virtual void RenderViewReady() override final;
+ virtual void WebContentsDestroyed() override final;
// WebContentsDelegate implementation.
- virtual void ActivateContents(content::WebContents* contents) OVERRIDE FINAL;
+ virtual void ActivateContents(content::WebContents* contents) override final;
virtual void DeactivateContents(
- content::WebContents* contents) OVERRIDE FINAL;
+ content::WebContents* contents) override final;
virtual void RunFileChooser(
content::WebContents* web_contents,
- const content::FileChooserParams& params) OVERRIDE;
- virtual bool ShouldFocusPageAfterCrash() OVERRIDE FINAL;
+ const content::FileChooserParams& params) override;
+ virtual bool ShouldFocusPageAfterCrash() override final;
virtual bool PreHandleGestureEvent(
content::WebContents* source,
- const blink::WebGestureEvent& event) OVERRIDE FINAL;
+ const blink::WebGestureEvent& event) override final;
content::WebContents* embedder_web_contents_;
std::string embedder_extension_id_;
« no previous file with comments | « extensions/browser/guest_view/guest_view.h ('k') | extensions/browser/guest_view/guest_view_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698