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

Unified Diff: ash/common/wm/window_state.h

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/common/wm/window_state.h
diff --git a/ash/common/wm/window_state.h b/ash/common/wm/window_state.h
index 9d4eaac8c23ad95a1c594893277dd5ef5852658f..239b359515679ab780999701dd4cb5173dd13d47 100644
--- a/ash/common/wm/window_state.h
+++ b/ash/common/wm/window_state.h
@@ -248,12 +248,6 @@ class ASH_EXPORT WindowState {
bool bounds_changed_by_user() const { return bounds_changed_by_user_; }
void set_bounds_changed_by_user(bool bounds_changed_by_user);
- // True if this window is an attached panel.
- bool panel_attached() const { return panel_attached_; }
- void set_panel_attached(bool panel_attached) {
- panel_attached_ = panel_attached;
- }
-
// True if the window is ignored by the shelf layout manager for
// purposes of darkening the shelf.
bool ignored_by_shelf() const { return ignored_by_shelf_; }
@@ -372,7 +366,6 @@ class ASH_EXPORT WindowState {
bool window_position_managed_;
bool bounds_changed_by_user_;
- bool panel_attached_;
bool ignored_by_shelf_;
bool can_consume_system_keys_;
std::unique_ptr<DragDetails> drag_details_;

Powered by Google App Engine
This is Rietveld 408576698