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

Unified Diff: ash/wm/aura/wm_window_aura.h

Issue 2024993002: Makes RootWindowController window creation in terms of common types (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge 2 trunk 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/wm/aura/wm_globals_aura.cc ('k') | ash/wm/aura/wm_window_aura.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/wm/aura/wm_window_aura.h
diff --git a/ash/wm/aura/wm_window_aura.h b/ash/wm/aura/wm_window_aura.h
index 317ed9f3980b68a21615a84542f75d5629761471..b5181edbc501151a01092e9ee07f5b9343f48bd7 100644
--- a/ash/wm/aura/wm_window_aura.h
+++ b/ash/wm/aura/wm_window_aura.h
@@ -45,6 +45,7 @@ class ASH_EXPORT WmWindowAura : public WmWindow, public aura::WindowObserver {
const WmWindow* GetRootWindow() const override;
WmRootWindowController* GetRootWindowController() override;
WmGlobals* GetGlobals() const override;
+ void SetName(const char* name) override;
base::string16 GetTitle() const override;
void SetShellWindowId(int id) override;
int GetShellWindowId() const override;
@@ -89,6 +90,8 @@ class ASH_EXPORT WmWindowAura : public WmWindow, public aura::WindowObserver {
void Animate(::wm::WindowAnimationType type) override;
void StopAnimatingProperty(
ui::LayerAnimationElement::AnimatableProperty property) override;
+ void SetChildWindowVisibilityChangesAnimated() override;
+ void SetMasksToBounds(bool value) override;
void SetBounds(const gfx::Rect& bounds) override;
void SetBoundsWithTransitionDelay(const gfx::Rect& bounds,
base::TimeDelta delta) override;
@@ -136,7 +139,12 @@ class ASH_EXPORT WmWindowAura : public WmWindow, public aura::WindowObserver {
std::vector<WmWindow*> GetChildren() override;
void ShowResizeShadow(int component) override;
void HideResizeShadow() override;
+ void SetBoundsInScreenBehaviorForChildren(
+ BoundsInScreenBehavior behavior) override;
+ void SetSnapsChildrenToPhysicalPixelBoundary() override;
void SnapToPixelBoundaryIfNecessary() override;
+ void SetChildrenUseExtendedHitRegion() override;
+ void SetDescendantsStayInSameRootWindow(bool value) override;
void AddObserver(WmWindowObserver* observer) override;
void RemoveObserver(WmWindowObserver* observer) override;
« no previous file with comments | « ash/wm/aura/wm_globals_aura.cc ('k') | ash/wm/aura/wm_window_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698