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

Unified Diff: chrome/browser/ui/views/frame/browser_frame_ashwin.h

Issue 1100223002: Update {virtual,override} to follow C++11 style in chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 8 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/ui/views/frame/browser_frame_ashwin.h
diff --git a/chrome/browser/ui/views/frame/browser_frame_ashwin.h b/chrome/browser/ui/views/frame/browser_frame_ashwin.h
index 8bad8eefea7f44ad495aaac8762151b5be69cccd..23526893012e44f0734c7fe970fd1373da6ec6c5 100644
--- a/chrome/browser/ui/views/frame/browser_frame_ashwin.h
+++ b/chrome/browser/ui/views/frame/browser_frame_ashwin.h
@@ -14,11 +14,12 @@ class BrowserFrameAshWin : public BrowserFrameAsh {
BrowserFrameAshWin(BrowserFrame* browser_frame, BrowserView* browser_view);
protected:
- virtual ~BrowserFrameAshWin();
+ ~BrowserFrameAshWin() override;
// Overridden from aura::client::ActivationChangeObserver:
- virtual void OnWindowFocused(aura::Window* gained_focus,
- aura::Window* lost_focus) override;
+ void OnWindowFocused(aura::Window* gained_focus,
+ aura::Window* lost_focus) override;
+
private:
DISALLOW_COPY_AND_ASSIGN(BrowserFrameAshWin);
};

Powered by Google App Engine
This is Rietveld 408576698