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

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

Issue 2558963002: Move shelf item tooltip flag from delegate to item. (Closed)
Patch Set: Cleanup Created 4 years 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 cf7bbf49b4552ad2f164bcfbfdcdeb23f56205aa..a11a6aa9495b76a2a130d2bb816d21e9b46f59c2 100644
--- a/ash/mus/bridge/wm_window_mus.cc
+++ b/ash/mus/bridge/wm_window_mus.cc
@@ -136,6 +136,10 @@ bool WmWindowMus::GetBoolProperty(WmWindowProperty key) {
return WmWindowAura::GetBoolProperty(key);
}
+void WmWindowMus::SetBoolProperty(WmWindowProperty key, bool value) {
sky 2016/12/08 00:38:54 Do we really need the override? Can't we use the i
msw 2016/12/08 20:31:36 Would that work? I'm not sure it matters; isn't th
sky 2016/12/08 20:52:42 It should work, because the property is registered
msw 2016/12/08 21:00:21 I guess I'm not sure what you have in mind here, I
msw 2016/12/08 21:18:19 Done. Thanks for explaining offline that WmWindowM
+ NOTIMPLEMENTED();
+}
+
int WmWindowMus::GetIntProperty(WmWindowProperty key) {
if (key == WmWindowProperty::SHELF_ITEM_TYPE) {
if (aura_window()->GetProperty(kShelfItemTypeKey) != TYPE_UNDEFINED)

Powered by Google App Engine
This is Rietveld 408576698