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

Unified Diff: chrome/browser/ui/window_sizer/window_sizer.cc

Issue 629463003: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[w-z]* (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/ui/window_sizer/window_sizer.cc
diff --git a/chrome/browser/ui/window_sizer/window_sizer.cc b/chrome/browser/ui/window_sizer/window_sizer.cc
index c2112321bf1eddcf9f384639b90859a7eb5bdbe3..46fa59328c33c556e6c00ec8624675be5341f202 100644
--- a/chrome/browser/ui/window_sizer/window_sizer.cc
+++ b/chrome/browser/ui/window_sizer/window_sizer.cc
@@ -45,7 +45,7 @@ class DefaultStateProvider : public WindowSizer::StateProvider {
virtual bool GetPersistentState(
gfx::Rect* bounds,
gfx::Rect* work_area,
- ui::WindowShowState* show_state) const OVERRIDE {
+ ui::WindowShowState* show_state) const override {
DCHECK(bounds);
DCHECK(show_state);
@@ -87,7 +87,7 @@ class DefaultStateProvider : public WindowSizer::StateProvider {
virtual bool GetLastActiveWindowState(
gfx::Rect* bounds,
- ui::WindowShowState* show_state) const OVERRIDE {
+ ui::WindowShowState* show_state) const override {
DCHECK(show_state);
// Applications are always restored with the same position.
if (!app_name_.empty())
@@ -145,7 +145,7 @@ class DefaultTargetDisplayProvider : public WindowSizer::TargetDisplayProvider {
virtual gfx::Display GetTargetDisplay(
const gfx::Screen* screen,
- const gfx::Rect& bounds) const OVERRIDE {
+ const gfx::Rect& bounds) const override {
#if defined(USE_ASH)
bool force_ash = false;
// On Windows check if the browser is launched to serve ASH. If yes then
« no previous file with comments | « chrome/browser/ui/webui/web_ui_test_handler.h ('k') | chrome/browser/ui/window_sizer/window_sizer_ash_uitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698