| OLD | NEW |
| 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_ |
| OLD | NEW |