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

Unified Diff: chrome/browser/extensions/extension_view_host.h

Issue 624153002: replace OVERRIDE and FINAL with override and final in chrome/browser/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
Index: chrome/browser/extensions/extension_view_host.h
diff --git a/chrome/browser/extensions/extension_view_host.h b/chrome/browser/extensions/extension_view_host.h
index a7599b43b986784e1d1d5275f361ea7866e49888..0ee445b27c5ddd3f0f2de251bb71158746efff1c 100644
--- a/chrome/browser/extensions/extension_view_host.h
+++ b/chrome/browser/extensions/extension_view_host.h
@@ -56,63 +56,63 @@ class ExtensionViewHost
const content::NativeWebKeyboardEvent& event);
// ExtensionHost
- virtual void OnDidStopLoading() OVERRIDE;
- virtual void OnDocumentAvailable() OVERRIDE;
- virtual void LoadInitialURL() OVERRIDE;
- virtual bool IsBackgroundPage() const OVERRIDE;
+ virtual void OnDidStopLoading() override;
+ virtual void OnDocumentAvailable() override;
+ virtual void LoadInitialURL() override;
+ virtual bool IsBackgroundPage() const override;
// content::WebContentsDelegate
virtual content::WebContents* OpenURLFromTab(
content::WebContents* source,
- const content::OpenURLParams& params) OVERRIDE;
+ const content::OpenURLParams& params) override;
virtual bool PreHandleKeyboardEvent(
content::WebContents* source,
const content::NativeWebKeyboardEvent& event,
- bool* is_keyboard_shortcut) OVERRIDE;
+ bool* is_keyboard_shortcut) override;
virtual void HandleKeyboardEvent(
content::WebContents* source,
- const content::NativeWebKeyboardEvent& event) OVERRIDE;
+ const content::NativeWebKeyboardEvent& event) override;
virtual bool PreHandleGestureEvent(
content::WebContents* source,
- const blink::WebGestureEvent& event) OVERRIDE;
+ const blink::WebGestureEvent& event) override;
virtual content::ColorChooser* OpenColorChooser(
content::WebContents* web_contents,
SkColor color,
- const std::vector<content::ColorSuggestion>& suggestions) OVERRIDE;
+ const std::vector<content::ColorSuggestion>& suggestions) override;
virtual void RunFileChooser(
content::WebContents* tab,
- const content::FileChooserParams& params) OVERRIDE;
+ const content::FileChooserParams& params) override;
virtual void ResizeDueToAutoResize(content::WebContents* source,
- const gfx::Size& new_size) OVERRIDE;
+ const gfx::Size& new_size) override;
// content::WebContentsObserver
virtual void RenderViewCreated(
- content::RenderViewHost* render_view_host) OVERRIDE;
+ content::RenderViewHost* render_view_host) override;
// web_modal::WebContentsModalDialogManagerDelegate
virtual web_modal::WebContentsModalDialogHost*
- GetWebContentsModalDialogHost() OVERRIDE;
+ GetWebContentsModalDialogHost() override;
virtual bool IsWebContentsVisible(
- content::WebContents* web_contents) OVERRIDE;
+ content::WebContents* web_contents) override;
// web_modal::WebContentsModalDialogHost
- virtual gfx::NativeView GetHostView() const OVERRIDE;
- virtual gfx::Point GetDialogPosition(const gfx::Size& size) OVERRIDE;
- virtual gfx::Size GetMaximumDialogSize() OVERRIDE;
+ virtual gfx::NativeView GetHostView() const override;
+ virtual gfx::Point GetDialogPosition(const gfx::Size& size) override;
+ virtual gfx::Size GetMaximumDialogSize() override;
virtual void AddObserver(
- web_modal::ModalDialogHostObserver* observer) OVERRIDE;
+ web_modal::ModalDialogHostObserver* observer) override;
virtual void RemoveObserver(
- web_modal::ModalDialogHostObserver* observer) OVERRIDE;
+ web_modal::ModalDialogHostObserver* observer) override;
// extensions::ExtensionFunctionDispatcher::Delegate
- virtual WindowController* GetExtensionWindowController() const OVERRIDE;
- virtual content::WebContents* GetAssociatedWebContents() const OVERRIDE;
- virtual content::WebContents* GetVisibleWebContents() const OVERRIDE;
+ virtual WindowController* GetExtensionWindowController() const override;
+ virtual content::WebContents* GetAssociatedWebContents() const override;
+ virtual content::WebContents* GetVisibleWebContents() const override;
// content::NotificationObserver
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ const content::NotificationDetails& details) override;
private:
// Implemented per-platform. Create the platform-specific ExtensionView.
« no previous file with comments | « chrome/browser/extensions/extension_url_rewrite_browsertest.cc ('k') | chrome/browser/extensions/extension_view_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698