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

Side by Side Diff: ash/mus/app_list_presenter_mus.h

Issue 2576913002: Use mojo app list interfaces for mash and classic ash. (Closed)
Patch Set: Sync and rebase Created 3 years, 11 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
« no previous file with comments | « ash/mus/BUILD.gn ('k') | ash/mus/app_list_presenter_mus.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 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 ASH_MUS_APP_LIST_PRESENTER_MUS_H_
6 #define ASH_MUS_APP_LIST_PRESENTER_MUS_H_
7
8 #include "base/macros.h"
9 #include "ui/app_list/presenter/app_list_presenter.h"
10
11 namespace ash {
12
13 // Mus+ash implementation of the AppListPresenter interface for mash, which
14 // talks to the app list presenter service in chrome.
15 class AppListPresenterMus : public app_list::AppListPresenter {
16 public:
17 AppListPresenterMus();
18 ~AppListPresenterMus() override;
19
20 // app_list::AppListPresenter:
21 void Show(int64_t display_id) override;
22 void Dismiss() override;
23 void ToggleAppList(int64_t display_id) override;
24 bool IsVisible() const override;
25 bool GetTargetVisibility() const override;
26
27 private:
28 DISALLOW_COPY_AND_ASSIGN(AppListPresenterMus);
29 };
30
31 } // namespace ash
32
33 #endif // ASH_MUS_APP_LIST_PRESENTER_MUS_H_
OLDNEW
« no previous file with comments | « ash/mus/BUILD.gn ('k') | ash/mus/app_list_presenter_mus.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698