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

Side by Side Diff: ash/aura/wm_window_aura.h

Issue 2157393002: Moves WindowCycleList/Controller to ash/common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Feedback and std::move Created 4 years, 5 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
« no previous file with comments | « ash/ash.gyp ('k') | ash/aura/wm_window_aura.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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_AURA_WM_WINDOW_AURA_H_ 5 #ifndef ASH_AURA_WM_WINDOW_AURA_H_
6 #define ASH_AURA_WM_WINDOW_AURA_H_ 6 #define ASH_AURA_WM_WINDOW_AURA_H_
7 7
8 #include "ash/ash_export.h" 8 #include "ash/ash_export.h"
9 #include "ash/common/wm_window.h" 9 #include "ash/common/wm_window.h"
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 void SetExcludedFromMru(bool excluded_from_mru) override; 143 void SetExcludedFromMru(bool excluded_from_mru) override;
144 std::vector<WmWindow*> GetChildren() override; 144 std::vector<WmWindow*> GetChildren() override;
145 void ShowResizeShadow(int component) override; 145 void ShowResizeShadow(int component) override;
146 void HideResizeShadow() override; 146 void HideResizeShadow() override;
147 void SetBoundsInScreenBehaviorForChildren( 147 void SetBoundsInScreenBehaviorForChildren(
148 BoundsInScreenBehavior behavior) override; 148 BoundsInScreenBehavior behavior) override;
149 void SetSnapsChildrenToPhysicalPixelBoundary() override; 149 void SetSnapsChildrenToPhysicalPixelBoundary() override;
150 void SnapToPixelBoundaryIfNecessary() override; 150 void SnapToPixelBoundaryIfNecessary() override;
151 void SetChildrenUseExtendedHitRegion() override; 151 void SetChildrenUseExtendedHitRegion() override;
152 void SetDescendantsStayInSameRootWindow(bool value) override; 152 void SetDescendantsStayInSameRootWindow(bool value) override;
153 std::unique_ptr<views::View> CreateViewWithRecreatedLayers() override;
153 void AddObserver(WmWindowObserver* observer) override; 154 void AddObserver(WmWindowObserver* observer) override;
154 void RemoveObserver(WmWindowObserver* observer) override; 155 void RemoveObserver(WmWindowObserver* observer) override;
155 bool HasObserver(const WmWindowObserver* observer) const override; 156 bool HasObserver(const WmWindowObserver* observer) const override;
156 157
157 private: 158 private:
158 // aura::WindowObserver: 159 // aura::WindowObserver:
159 void OnWindowHierarchyChanging(const HierarchyChangeParams& params) override; 160 void OnWindowHierarchyChanging(const HierarchyChangeParams& params) override;
160 void OnWindowHierarchyChanged(const HierarchyChangeParams& params) override; 161 void OnWindowHierarchyChanged(const HierarchyChangeParams& params) override;
161 void OnWindowStackingChanged(aura::Window* window) override; 162 void OnWindowStackingChanged(aura::Window* window) override;
162 void OnWindowPropertyChanged(aura::Window* window, 163 void OnWindowPropertyChanged(aura::Window* window,
(...skipping 11 matching lines...) Expand all
174 aura::Window* window_; 175 aura::Window* window_;
175 176
176 base::ObserverList<WmWindowObserver> observers_; 177 base::ObserverList<WmWindowObserver> observers_;
177 178
178 DISALLOW_COPY_AND_ASSIGN(WmWindowAura); 179 DISALLOW_COPY_AND_ASSIGN(WmWindowAura);
179 }; 180 };
180 181
181 } // namespace ash 182 } // namespace ash
182 183
183 #endif // ASH_AURA_WM_WINDOW_AURA_H_ 184 #endif // ASH_AURA_WM_WINDOW_AURA_H_
OLDNEW
« no previous file with comments | « ash/ash.gyp ('k') | ash/aura/wm_window_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698