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

Unified Diff: ui/app_list/presenter/app_list_presenter.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/app_list/presenter/app_list.cc ('k') | ui/app_list/presenter/app_list_presenter.mojom » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/app_list/presenter/app_list_presenter.h
diff --git a/ui/app_list/presenter/app_list_presenter.h b/ui/app_list/presenter/app_list_presenter.h
deleted file mode 100644
index 320564b5f40f024d086514ccf44f12cbef3633aa..0000000000000000000000000000000000000000
--- a/ui/app_list/presenter/app_list_presenter.h
+++ /dev/null
@@ -1,41 +0,0 @@
-// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef UI_APP_LIST_PRESENTER_APP_LIST_PRESENTER_H_
-#define UI_APP_LIST_PRESENTER_APP_LIST_PRESENTER_H_
-
-#include <stdint.h>
-
-#include "ui/app_list/presenter/app_list_presenter_export.h"
-
-namespace app_list {
-
-// Interface for showing and hiding the app list.
-class APP_LIST_PRESENTER_EXPORT AppListPresenter {
- public:
- virtual ~AppListPresenter() {}
-
- // Show/hide app list window. The |window| is used to deterime in
- // which display (in which the |window| exists) the app list should
- // be shown.
- virtual void Show(int64_t display_id) = 0;
-
- // Invoked to dismiss app list. This may leave the view open but hidden from
- // the user.
- virtual void Dismiss() = 0;
-
- // Show the app list if it is visible, hide it if it is hidden.
- virtual void ToggleAppList(int64_t display_id) = 0;
-
- // Returns current visibility of the app list.
- virtual bool IsVisible() const = 0;
-
- // Returns target visibility. This may differ from IsVisible() if a
- // visibility transition is in progress.
- virtual bool GetTargetVisibility() const = 0;
-};
-
-} // namespace app_list
-
-#endif // UI_APP_LIST_PRESENTER_APP_LIST_PRESENTER_H_
« no previous file with comments | « ui/app_list/presenter/app_list.cc ('k') | ui/app_list/presenter/app_list_presenter.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698