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

Side by Side Diff: ash/wm/common/wm_window.h

Issue 1921883002: Removes WindowState::aura_window() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix windows build 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
« no previous file with comments | « ash/wm/common/window_state_util.cc ('k') | ash/wm/common/wm_window_tracker.h » ('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_WM_COMMON_WM_WINDOW_H_ 5 #ifndef ASH_WM_COMMON_WM_WINDOW_H_
6 #define ASH_WM_COMMON_WM_WINDOW_H_ 6 #define ASH_WM_COMMON_WM_WINDOW_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 166
167 virtual void Hide() = 0; 167 virtual void Hide() = 0;
168 virtual void Show() = 0; 168 virtual void Show() = 0;
169 169
170 virtual bool IsFocused() const = 0; 170 virtual bool IsFocused() const = 0;
171 171
172 virtual bool IsActive() const = 0; 172 virtual bool IsActive() const = 0;
173 virtual void Activate() = 0; 173 virtual void Activate() = 0;
174 virtual void Deactivate() = 0; 174 virtual void Deactivate() = 0;
175 175
176 virtual void SetFullscreen() = 0;
177
176 virtual void Maximize() = 0; 178 virtual void Maximize() = 0;
177 virtual void Minimize() = 0; 179 virtual void Minimize() = 0;
178 virtual void Unminimize() = 0; 180 virtual void Unminimize() = 0;
179 181
180 virtual bool CanMaximize() const = 0; 182 virtual bool CanMaximize() const = 0;
181 virtual bool CanMinimize() const = 0; 183 virtual bool CanMinimize() const = 0;
182 virtual bool CanResize() const = 0; 184 virtual bool CanResize() const = 0;
183 virtual bool CanActivate() const = 0; 185 virtual bool CanActivate() const = 0;
184 186
185 virtual void StackChildAtTop(WmWindow* child) = 0; 187 virtual void StackChildAtTop(WmWindow* child) = 0;
(...skipping 12 matching lines...) Expand all
198 virtual void RemoveObserver(WmWindowObserver* observer) = 0; 200 virtual void RemoveObserver(WmWindowObserver* observer) = 0;
199 201
200 protected: 202 protected:
201 virtual ~WmWindow() {} 203 virtual ~WmWindow() {}
202 }; 204 };
203 205
204 } // namespace wm 206 } // namespace wm
205 } // namespace ash 207 } // namespace ash
206 208
207 #endif // ASH_WM_COMMON_WM_WINDOW_H_ 209 #endif // ASH_WM_COMMON_WM_WINDOW_H_
OLDNEW
« no previous file with comments | « ash/wm/common/window_state_util.cc ('k') | ash/wm/common/wm_window_tracker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698