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

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

Issue 2075923002: mash: Convert FocusCycler to wm common types and move to //ash/common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 6 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 bool CanResize() const override; 121 bool CanResize() const override;
122 bool CanActivate() const override; 122 bool CanActivate() const override;
123 void StackChildAtTop(WmWindow* child) override; 123 void StackChildAtTop(WmWindow* child) override;
124 void StackChildAtBottom(WmWindow* child) override; 124 void StackChildAtBottom(WmWindow* child) override;
125 void StackChildAbove(WmWindow* child, WmWindow* target) override; 125 void StackChildAbove(WmWindow* child, WmWindow* target) override;
126 void StackChildBelow(WmWindow* child, WmWindow* target) override; 126 void StackChildBelow(WmWindow* child, WmWindow* target) override;
127 void SetAlwaysOnTop(bool value) override; 127 void SetAlwaysOnTop(bool value) override;
128 bool IsAlwaysOnTop() const override; 128 bool IsAlwaysOnTop() const override;
129 void Hide() override; 129 void Hide() override;
130 void Show() override; 130 void Show() override;
131 views::Widget* GetInternalWidget() override;
131 void CloseWidget() override; 132 void CloseWidget() override;
132 bool IsFocused() const override; 133 bool IsFocused() const override;
133 bool IsActive() const override; 134 bool IsActive() const override;
134 void Activate() override; 135 void Activate() override;
135 void Deactivate() override; 136 void Deactivate() override;
136 void SetFullscreen() override; 137 void SetFullscreen() override;
137 void Maximize() override; 138 void Maximize() override;
138 void Minimize() override; 139 void Minimize() override;
139 void Unminimize() override; 140 void Unminimize() override;
140 void SetExcludedFromMru(bool excluded_from_mru) override; 141 void SetExcludedFromMru(bool excluded_from_mru) override;
(...skipping 28 matching lines...) Expand all
169 aura::Window* window_; 170 aura::Window* window_;
170 171
171 base::ObserverList<WmWindowObserver> observers_; 172 base::ObserverList<WmWindowObserver> observers_;
172 173
173 DISALLOW_COPY_AND_ASSIGN(WmWindowAura); 174 DISALLOW_COPY_AND_ASSIGN(WmWindowAura);
174 }; 175 };
175 176
176 } // namespace ash 177 } // namespace ash
177 178
178 #endif // ASH_AURA_WM_WINDOW_AURA_H_ 179 #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