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

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

Issue 2029323002: mash: Convert AshPopupAlignmentDelegate to wm common types (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments Created 4 years, 6 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/mus/bridge/wm_shelf_mus.h ('k') | ash/shelf/shelf.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/mus/bridge/wm_shelf_mus.cc
diff --git a/ash/mus/bridge/wm_shelf_mus.cc b/ash/mus/bridge/wm_shelf_mus.cc
index b8d8b71aec2266f683d5b484e098a9d716ba8cf9..ffee9680c1a2c49f694bdac55ef5088426f3c23c 100644
--- a/ash/mus/bridge/wm_shelf_mus.cc
+++ b/ash/mus/bridge/wm_shelf_mus.cc
@@ -50,6 +50,11 @@ void WmShelfMus::SetAutoHideBehavior(ShelfAutoHideBehavior behavior) {
NOTIMPLEMENTED();
}
+ShelfAutoHideState WmShelfMus::GetAutoHideState() const {
+ NOTIMPLEMENTED();
+ return SHELF_AUTO_HIDE_HIDDEN;
+}
+
ShelfBackgroundType WmShelfMus::GetBackgroundType() const {
NOTIMPLEMENTED();
return SHELF_BACKGROUND_DEFAULT;
@@ -64,6 +69,11 @@ ShelfVisibilityState WmShelfMus::GetVisibilityState() const {
return shelf_layout_manager_->GetShelfWindow() ? SHELF_VISIBLE : SHELF_HIDDEN;
}
+gfx::Rect WmShelfMus::GetUserWorkAreaBounds() const {
+ NOTIMPLEMENTED();
+ return gfx::Rect();
+}
+
void WmShelfMus::UpdateIconPositionForWindow(WmWindow* window) {
NOTIMPLEMENTED();
}
« no previous file with comments | « ash/mus/bridge/wm_shelf_mus.h ('k') | ash/shelf/shelf.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698