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

Side by Side Diff: ash/wm/common/workspace/workspace_layout_manager.h

Issue 1997633004: Removes |old| parameter from OnWindowPropertyChanged() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef ASH_WM_COMMON_WORKSPACE_WORKSPACE_LAYOUT_MANAGER_H_ 5 #ifndef ASH_WM_COMMON_WORKSPACE_WORKSPACE_LAYOUT_MANAGER_H_
6 #define ASH_WM_COMMON_WORKSPACE_WORKSPACE_LAYOUT_MANAGER_H_ 6 #define ASH_WM_COMMON_WORKSPACE_WORKSPACE_LAYOUT_MANAGER_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <set> 9 #include <set>
10 10
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 64
65 // wm::WmRootWindowControllerObserver overrides: 65 // wm::WmRootWindowControllerObserver overrides:
66 void OnWorkAreaChanged() override; 66 void OnWorkAreaChanged() override;
67 void OnFullscreenStateChanged(bool is_fullscreen) override; 67 void OnFullscreenStateChanged(bool is_fullscreen) override;
68 68
69 // Overriden from wm::WmWindowObserver: 69 // Overriden from wm::WmWindowObserver:
70 void OnWindowTreeChanged( 70 void OnWindowTreeChanged(
71 wm::WmWindow* window, 71 wm::WmWindow* window,
72 const wm::WmWindowObserver::TreeChangeParams& params) override; 72 const wm::WmWindowObserver::TreeChangeParams& params) override;
73 void OnWindowPropertyChanged(wm::WmWindow* window, 73 void OnWindowPropertyChanged(wm::WmWindow* window,
74 wm::WmWindowProperty property, 74 wm::WmWindowProperty property) override;
75 intptr_t old) override;
76 void OnWindowStackingChanged(wm::WmWindow* window) override; 75 void OnWindowStackingChanged(wm::WmWindow* window) override;
77 void OnWindowDestroying(wm::WmWindow* window) override; 76 void OnWindowDestroying(wm::WmWindow* window) override;
78 void OnWindowBoundsChanged(wm::WmWindow* window, 77 void OnWindowBoundsChanged(wm::WmWindow* window,
79 const gfx::Rect& old_bounds, 78 const gfx::Rect& old_bounds,
80 const gfx::Rect& new_bounds) override; 79 const gfx::Rect& new_bounds) override;
81 80
82 // wm::WmActivationObserver overrides: 81 // wm::WmActivationObserver overrides:
83 void OnWindowActivated(wm::WmWindow* gained_active, 82 void OnWindowActivated(wm::WmWindow* gained_active,
84 wm::WmWindow* lost_active) override; 83 wm::WmWindow* lost_active) override;
85 84
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 // A window which covers the full container and which gets inserted behind the 139 // A window which covers the full container and which gets inserted behind the
141 // topmost visible window. 140 // topmost visible window.
142 std::unique_ptr<WorkspaceLayoutManagerBackdropDelegate> backdrop_delegate_; 141 std::unique_ptr<WorkspaceLayoutManagerBackdropDelegate> backdrop_delegate_;
143 142
144 DISALLOW_COPY_AND_ASSIGN(WorkspaceLayoutManager); 143 DISALLOW_COPY_AND_ASSIGN(WorkspaceLayoutManager);
145 }; 144 };
146 145
147 } // namespace ash 146 } // namespace ash
148 147
149 #endif // ASH_WM_COMMON_WORKSPACE_WORKSPACE_LAYOUT_MANAGER_H_ 148 #endif // ASH_WM_COMMON_WORKSPACE_WORKSPACE_LAYOUT_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698