| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 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_ | |
| 7 | |
| 8 #include "base/macros.h" | |
| 9 #include "chrome/browser/ui/app_list/app_list_controller_delegate_views.h" | |
| 10 | |
| 11 // Windows specific configuration and behaviour for the AppList. | |
| 12 class AppListControllerDelegateWin : public AppListControllerDelegateViews { | |
| 13 public: | |
| 14 explicit AppListControllerDelegateWin(AppListServiceViews* service); | |
| 15 ~AppListControllerDelegateWin() override; | |
| 16 | |
| 17 // AppListControllerDelegate overrides: | |
| 18 bool ForceNativeDesktop() const override; | |
| 19 | |
| 20 private: | |
| 21 DISALLOW_COPY_AND_ASSIGN(AppListControllerDelegateWin); | |
| 22 }; | |
| 23 | |
| 24 #endif // CHROME_BROWSER_UI_VIEWS_APP_LIST_WIN_APP_LIST_CONTROLLER_DELEGATE_WIN
_H_ | |
| OLD | NEW |