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

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

Issue 2336673002: Reland of [ash-md] Fades overview header in and out (Closed)
Patch Set: Fixes use-after-free for the views that get destroyed synchronously in tests Created 4 years, 3 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 | « no previous file | 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 gfx::Point ConvertPointToScreen(const gfx::Point& point) const override; 67 gfx::Point ConvertPointToScreen(const gfx::Point& point) const override;
68 gfx::Point ConvertPointFromScreen(const gfx::Point& point) const override; 68 gfx::Point ConvertPointFromScreen(const gfx::Point& point) const override;
69 gfx::Rect ConvertRectToScreen(const gfx::Rect& rect) const override; 69 gfx::Rect ConvertRectToScreen(const gfx::Rect& rect) const override;
70 gfx::Rect ConvertRectFromScreen(const gfx::Rect& rect) const override; 70 gfx::Rect ConvertRectFromScreen(const gfx::Rect& rect) const override;
71 gfx::Size GetMinimumSize() const override; 71 gfx::Size GetMinimumSize() const override;
72 gfx::Size GetMaximumSize() const override; 72 gfx::Size GetMaximumSize() const override;
73 bool GetTargetVisibility() const override; 73 bool GetTargetVisibility() const override;
74 bool IsVisible() const override; 74 bool IsVisible() const override;
75 void SetOpacity(float opacity) override; 75 void SetOpacity(float opacity) override;
76 float GetTargetOpacity() const override; 76 float GetTargetOpacity() const override;
77 gfx::Rect GetMinimizeAnimationTargetBoundsInScreen() const override;
77 void SetTransform(const gfx::Transform& transform) override; 78 void SetTransform(const gfx::Transform& transform) override;
78 gfx::Transform GetTargetTransform() const override; 79 gfx::Transform GetTargetTransform() const override;
79 bool IsSystemModal() const override; 80 bool IsSystemModal() const override;
80 bool GetBoolProperty(WmWindowProperty key) override; 81 bool GetBoolProperty(WmWindowProperty key) override;
82 SkColor GetColorProperty(WmWindowProperty key) override;
83 void SetColorProperty(WmWindowProperty key, SkColor value) override;
81 int GetIntProperty(WmWindowProperty key) override; 84 int GetIntProperty(WmWindowProperty key) override;
82 void SetIntProperty(WmWindowProperty key, int value) override; 85 void SetIntProperty(WmWindowProperty key, int value) override;
83 ShelfItemDetails* GetShelfItemDetails() override; 86 ShelfItemDetails* GetShelfItemDetails() override;
84 void SetShelfItemDetails(const ShelfItemDetails& details) override; 87 void SetShelfItemDetails(const ShelfItemDetails& details) override;
85 void ClearShelfItemDetails() override; 88 void ClearShelfItemDetails() override;
86 const wm::WindowState* GetWindowState() const override; 89 const wm::WindowState* GetWindowState() const override;
87 WmWindow* GetToplevelWindow() override; 90 WmWindow* GetToplevelWindow() override;
88 WmWindow* GetToplevelWindowForFocus() override; 91 WmWindow* GetToplevelWindowForFocus() override;
89 void SetParentUsingContext(WmWindow* context, 92 void SetParentUsingContext(WmWindow* context,
90 const gfx::Rect& screen_bounds) override; 93 const gfx::Rect& screen_bounds) override;
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 206
204 bool added_transient_observer_ = false; 207 bool added_transient_observer_ = false;
205 base::ObserverList<WmTransientWindowObserver> transient_observers_; 208 base::ObserverList<WmTransientWindowObserver> transient_observers_;
206 209
207 DISALLOW_COPY_AND_ASSIGN(WmWindowAura); 210 DISALLOW_COPY_AND_ASSIGN(WmWindowAura);
208 }; 211 };
209 212
210 } // namespace ash 213 } // namespace ash
211 214
212 #endif // ASH_AURA_WM_WINDOW_AURA_H_ 215 #endif // ASH_AURA_WM_WINDOW_AURA_H_
OLDNEW
« no previous file with comments | « no previous file | ash/aura/wm_window_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698