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

Unified Diff: ash/shell/example_app_list_presenter.cc

Issue 2576913002: Use mojo app list interfaces for mash and classic ash. (Closed)
Patch Set: Add missing dep. Created 4 years 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
Index: ash/shell/example_app_list_presenter.cc
diff --git a/ash/shell/example_app_list_presenter.cc b/ash/shell/example_app_list_presenter.cc
new file mode 100644
index 0000000000000000000000000000000000000000..150a6c6f77110a04784cec287845ecea6ec9edc6
--- /dev/null
+++ b/ash/shell/example_app_list_presenter.cc
@@ -0,0 +1,61 @@
+// 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.
+
+#include "ash/shell/example_app_list_presenter.h"
+
+#include "ash/shell/example_factory.h"
+#include "ui/app_list/presenter/app_list_view_delegate_factory.h"
+
+namespace {
+
+// An example app list view delegate factory.
+class ExampleAppListViewDelegateFactory
+ : public app_list::AppListViewDelegateFactory {
+ public:
+ ExampleAppListViewDelegateFactory() {}
+ ~ExampleAppListViewDelegateFactory() override {}
+
+ app_list::AppListViewDelegate* GetDelegate() override {
Daniel Erat 2016/12/22 18:17:57 ui/app_list/presenter/app_list_view_delegate_facto
msw 2016/12/23 03:59:34 This indeed passes a pointer to an existing (or la
+ return ash::shell::CreateAppListViewDelegate();
+ }
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(ExampleAppListViewDelegateFactory);
+};
+
+} // namespace
+
+namespace ash {
+namespace shell {
+
+ExampleAppListPresenter::ExampleAppListPresenter()
+ : binding_(this),
+ app_list_presenter_delegate_factory_(
+ base::MakeUnique<ExampleAppListViewDelegateFactory>()),
+ app_list_presenter_impl_(&app_list_presenter_delegate_factory_) {
+ // Note: This example |app_list_presenter_impl_| does not report visibility
+ // changes to the app_list::mojom::AppList implementation owned by WmShell.
+}
+
+ExampleAppListPresenter::~ExampleAppListPresenter() {}
+
+app_list::mojom::AppListPresenterPtr
+ExampleAppListPresenter::CreateInterfacePtrAndBind() {
+ return binding_.CreateInterfacePtrAndBind();
+}
+
+void ExampleAppListPresenter::Show(int64_t display_id) {
+ app_list_presenter_impl_.Show(display_id);
+}
+
+void ExampleAppListPresenter::Dismiss() {
+ app_list_presenter_impl_.Dismiss();
+}
+
+void ExampleAppListPresenter::ToggleAppList(int64_t display_id) {
+ app_list_presenter_impl_.ToggleAppList(display_id);
+}
+
+} // namespace shell
+} // namespace ash

Powered by Google App Engine
This is Rietveld 408576698