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

Unified Diff: ash/mus/bridge/wm_window_mus.cc

Issue 2462753002: Use Ash's ShelfWindowWatcher for app panel windows. (Closed)
Patch Set: Add ShelfWindowWatcherTest, remove ChromeLauncherControllerImplTest panel use. Created 4 years, 1 month 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/bridge/wm_window_mus.cc
diff --git a/ash/mus/bridge/wm_window_mus.cc b/ash/mus/bridge/wm_window_mus.cc
index b35cad1fd4bd3de46a038bc37038175c43b06441..f9830cf068b352f7e1c8b6e6ff6d05b3916734a9 100644
--- a/ash/mus/bridge/wm_window_mus.cc
+++ b/ash/mus/bridge/wm_window_mus.cc
@@ -491,6 +491,16 @@ void WmWindowMus::SetIntProperty(WmWindowProperty key, int value) {
NOTREACHED();
}
+gfx::ImageSkia WmWindowMus::GetWindowIcon() {
+ NOTIMPLEMENTED();
+ return gfx::ImageSkia();
+}
+
+gfx::ImageSkia WmWindowMus::GetAppIcon() {
+ NOTIMPLEMENTED();
+ return gfx::ImageSkia();
+}
+
const wm::WindowState* WmWindowMus::GetWindowState() const {
return window_state_.get();
}

Powered by Google App Engine
This is Rietveld 408576698