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

Unified Diff: ash/mus/sysui/shell_delegate_mus.cc

Issue 1684633002: ash/mash: Introduce a ShelfDelegate implementation for mash. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ash-sysui-window-container
Patch Set: self-nit Created 4 years, 10 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
Index: ash/mus/sysui/shell_delegate_mus.cc
diff --git a/ash/mus/sysui/shell_delegate_mus.cc b/ash/mus/sysui/shell_delegate_mus.cc
index a28ae8ce44f8ad0ffd0bbde86e8dadb260eea38a..289bf2b121f954d21c6c98cb1aa317b0940fb06a 100644
--- a/ash/mus/sysui/shell_delegate_mus.cc
+++ b/ash/mus/sysui/shell_delegate_mus.cc
@@ -6,6 +6,7 @@
#include "ash/default_accessibility_delegate.h"
#include "ash/default_user_wallpaper_delegate.h"
+#include "ash/mus/sysui/shelf_delegate_mus.h"
#include "ash/session/session_state_delegate.h"
#include "ash/system/tray/default_system_tray_delegate.h"
#include "base/strings/string16.h"
@@ -143,8 +144,7 @@ app_list::AppListViewDelegate* ShellDelegateMus::GetAppListViewDelegate() {
}
ShelfDelegate* ShellDelegateMus::CreateShelfDelegate(ShelfModel* model) {
- NOTIMPLEMENTED();
- return nullptr;
+ return new ShelfDelegateMus(model);
}
ash::SystemTrayDelegate* ShellDelegateMus::CreateSystemTrayDelegate() {

Powered by Google App Engine
This is Rietveld 408576698