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

Unified Diff: chrome/browser/ui/panels/panel_host.h

Issue 627043002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[a-s]* (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 | « chrome/browser/ui/panels/panel_extension_browsertest.cc ('k') | chrome/browser/ui/panels/panel_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/panels/panel_host.h
diff --git a/chrome/browser/ui/panels/panel_host.h b/chrome/browser/ui/panels/panel_host.h
index d622c23ede2bbec1af6894b739a5c9c72f4e0ddf..1a1a27463766b90a989ffd210a8de0fa52564f93 100644
--- a/chrome/browser/ui/panels/panel_host.h
+++ b/chrome/browser/ui/panels/panel_host.h
@@ -50,44 +50,44 @@ class PanelHost : public content::WebContentsDelegate,
// content::WebContentsDelegate overrides.
virtual content::WebContents* OpenURLFromTab(
content::WebContents* source,
- const content::OpenURLParams& params) OVERRIDE;
+ const content::OpenURLParams& params) override;
virtual void NavigationStateChanged(
const content::WebContents* source,
- content::InvalidateTypes changed_flags) OVERRIDE;
+ content::InvalidateTypes changed_flags) override;
virtual void AddNewContents(content::WebContents* source,
content::WebContents* new_contents,
WindowOpenDisposition disposition,
const gfx::Rect& initial_pos,
bool user_gesture,
- bool* was_blocked) OVERRIDE;
- virtual void ActivateContents(content::WebContents* contents) OVERRIDE;
- virtual void DeactivateContents(content::WebContents* contents) OVERRIDE;
+ bool* was_blocked) override;
+ virtual void ActivateContents(content::WebContents* contents) override;
+ virtual void DeactivateContents(content::WebContents* contents) override;
virtual void LoadingStateChanged(content::WebContents* source,
- bool to_different_document) OVERRIDE;
- virtual void CloseContents(content::WebContents* source) OVERRIDE;
+ bool to_different_document) override;
+ virtual void CloseContents(content::WebContents* source) override;
virtual void MoveContents(content::WebContents* source,
- const gfx::Rect& pos) OVERRIDE;
+ const gfx::Rect& pos) override;
virtual bool IsPopupOrPanel(
- const content::WebContents* source) const OVERRIDE;
- virtual void ContentsZoomChange(bool zoom_in) OVERRIDE;
+ const content::WebContents* source) const override;
+ virtual void ContentsZoomChange(bool zoom_in) override;
virtual void HandleKeyboardEvent(
content::WebContents* source,
- const content::NativeWebKeyboardEvent& event) OVERRIDE;
- virtual void WebContentsFocused(content::WebContents* contents) OVERRIDE;
+ const content::NativeWebKeyboardEvent& event) override;
+ virtual void WebContentsFocused(content::WebContents* contents) override;
virtual void ResizeDueToAutoResize(content::WebContents* web_contents,
- const gfx::Size& new_size) OVERRIDE;
+ const gfx::Size& new_size) override;
// content::WebContentsObserver overrides.
virtual void RenderViewCreated(
- content::RenderViewHost* render_view_host) OVERRIDE;
- virtual void RenderProcessGone(base::TerminationStatus status) OVERRIDE;
- virtual void WebContentsDestroyed() OVERRIDE;
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
+ content::RenderViewHost* render_view_host) override;
+ virtual void RenderProcessGone(base::TerminationStatus status) override;
+ virtual void WebContentsDestroyed() override;
+ virtual bool OnMessageReceived(const IPC::Message& message) override;
// extensions::ExtensionFunctionDispatcher::Delegate overrides.
virtual extensions::WindowController* GetExtensionWindowController() const
- OVERRIDE;
- virtual content::WebContents* GetAssociatedWebContents() const OVERRIDE;
+ override;
+ virtual content::WebContents* GetAssociatedWebContents() const override;
// Actions on web contents.
void Reload();
« no previous file with comments | « chrome/browser/ui/panels/panel_extension_browsertest.cc ('k') | chrome/browser/ui/panels/panel_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698