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

Unified Diff: ash/sysui/shell_delegate_mus.cc

Issue 2335833002: mash: Port ash_sysui app list presenter to mojo:ash. (Closed)
Patch Set: Reorder ShellDelegateMus members. Created 4 years, 3 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 | « ash/sysui/shell_delegate_mus.h ('k') | ash/sysui/sysui_application.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/sysui/shell_delegate_mus.cc
diff --git a/ash/sysui/shell_delegate_mus.cc b/ash/sysui/shell_delegate_mus.cc
index 694f48cbd830c5a48788600d69e8423b756ad0e6..b13442f3fb6146ed976da89fc5f524e241fb2a54 100644
--- a/ash/sysui/shell_delegate_mus.cc
+++ b/ash/sysui/shell_delegate_mus.cc
@@ -11,11 +11,9 @@
#include "ash/common/session/session_state_delegate.h"
#include "ash/common/system/tray/default_system_tray_delegate.h"
#include "ash/common/wallpaper/wallpaper_delegate.h"
-#include "ash/sysui/app_list_presenter_mus.h"
#include "base/memory/ptr_util.h"
#include "base/strings/string16.h"
#include "components/user_manager/user_info_impl.h"
-#include "ui/app_list/presenter/app_list_presenter.h"
#include "ui/gfx/image/image.h"
namespace ash {
@@ -99,9 +97,7 @@ class MediaDelegateStub : public MediaDelegate {
} // namespace
-ShellDelegateMus::ShellDelegateMus(
- std::unique_ptr<AppListPresenterMus> app_list_presenter)
- : app_list_presenter_(std::move(app_list_presenter)) {}
+ShellDelegateMus::ShellDelegateMus() {}
ShellDelegateMus::~ShellDelegateMus() {}
@@ -157,10 +153,12 @@ void ShellDelegateMus::OpenUrlFromArc(const GURL& url) {
}
app_list::AppListPresenter* ShellDelegateMus::GetAppListPresenter() {
- return app_list_presenter_.get();
+ NOTIMPLEMENTED();
+ return nullptr;
}
ShelfDelegate* ShellDelegateMus::CreateShelfDelegate(ShelfModel* model) {
+ NOTIMPLEMENTED();
return nullptr;
}
« no previous file with comments | « ash/sysui/shell_delegate_mus.h ('k') | ash/sysui/sysui_application.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698