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

Side by Side Diff: chrome/browser/ui/views/app_list/win/app_list_controller_delegate_win.h

Issue 628773002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[t-v]* (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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_VIEWS_APP_LIST_WIN_APP_LIST_CONTROLLER_DELEGATE_WIN_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_APP_LIST_WIN_APP_LIST_CONTROLLER_DELEGATE_WIN_H_
6 #define CHROME_BROWSER_UI_VIEWS_APP_LIST_WIN_APP_LIST_CONTROLLER_DELEGATE_WIN_H_ 6 #define CHROME_BROWSER_UI_VIEWS_APP_LIST_WIN_APP_LIST_CONTROLLER_DELEGATE_WIN_H_
7 7
8 #include "chrome/browser/ui/app_list/app_list_controller_delegate_views.h" 8 #include "chrome/browser/ui/app_list/app_list_controller_delegate_views.h"
9 9
10 // Windows specific configuration and behaviour for the AppList. 10 // Windows specific configuration and behaviour for the AppList.
11 class AppListControllerDelegateWin : public AppListControllerDelegateViews { 11 class AppListControllerDelegateWin : public AppListControllerDelegateViews {
12 public: 12 public:
13 explicit AppListControllerDelegateWin(AppListServiceViews* service); 13 explicit AppListControllerDelegateWin(AppListServiceViews* service);
14 virtual ~AppListControllerDelegateWin(); 14 virtual ~AppListControllerDelegateWin();
15 15
16 // AppListControllerDelegate overrides: 16 // AppListControllerDelegate overrides:
17 virtual bool ForceNativeDesktop() const OVERRIDE; 17 virtual bool ForceNativeDesktop() const override;
18 virtual gfx::ImageSkia GetWindowIcon() OVERRIDE; 18 virtual gfx::ImageSkia GetWindowIcon() override;
19 19
20 private: 20 private:
21 // AppListcontrollerDelegateImpl: 21 // AppListcontrollerDelegateImpl:
22 virtual void FillLaunchParams(AppLaunchParams* params) OVERRIDE; 22 virtual void FillLaunchParams(AppLaunchParams* params) override;
23 23
24 DISALLOW_COPY_AND_ASSIGN(AppListControllerDelegateWin); 24 DISALLOW_COPY_AND_ASSIGN(AppListControllerDelegateWin);
25 }; 25 };
26 26
27 #endif // CHROME_BROWSER_UI_VIEWS_APP_LIST_WIN_APP_LIST_CONTROLLER_DELEGATE_WIN _H_ 27 #endif // CHROME_BROWSER_UI_VIEWS_APP_LIST_WIN_APP_LIST_CONTROLLER_DELEGATE_WIN _H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698