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

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

Issue 2143893002: Purge the App Launcher code from Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comment Created 4 years, 4 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
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698