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

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

Issue 2239233002: [ash-md] Fades overview header in and out (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: [ash-md] Fades overview header in and out (more tests) 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
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 84823022e8ed362bd8713621c610aa4458df3c17..dfab8ff876dafa21394922a90307e18a089bde38 100644
--- a/ash/mus/bridge/wm_window_mus.cc
+++ b/ash/mus/bridge/wm_window_mus.cc
@@ -296,6 +296,12 @@ float WmWindowMus::GetTargetOpacity() const {
return window_->opacity();
}
+gfx::Rect WmWindowMus::GetMinimizeAnimationTargetBoundsInScreen() const {
+ // TODO: need animation support: http://crbug.com/615087.
+ NOTIMPLEMENTED();
+ return GetBoundsInScreen();
+}
+
void WmWindowMus::SetTransform(const gfx::Transform& transform) {
// TODO: mus needs to support transforms: http://crbug.com/615089.
NOTIMPLEMENTED();
@@ -344,6 +350,12 @@ int WmWindowMus::GetIntProperty(WmWindowProperty key) {
return 0;
}
+ if (key == WmWindowProperty::TOP_VIEW_COLOR) {
+ // TODO: need support for TOP_VIEW_COLOR: http://crbug.com/615100.
+ NOTIMPLEMENTED();
+ return 0;
+ }
+
NOTREACHED();
return 0;
}
@@ -360,6 +372,12 @@ void WmWindowMus::SetIntProperty(WmWindowProperty key, int value) {
return;
}
+ if (key == WmWindowProperty::TOP_VIEW_COLOR) {
+ // TODO: need support for TOP_VIEW_COLOR: http://crbug.com/615100.
+ NOTIMPLEMENTED();
+ return;
+ }
+
NOTREACHED();
}

Powered by Google App Engine
This is Rietveld 408576698