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

Side by Side Diff: ash/mus/bridge/wm_window_mus.h

Issue 2171983002: Move processing out of AcceleratorDelegate (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@wire_up_controller
Patch Set: year 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
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_MUS_BRIDGE_WM_WINDOW_MUS_H_ 5 #ifndef ASH_MUS_BRIDGE_WM_WINDOW_MUS_H_
6 #define ASH_MUS_BRIDGE_WM_WINDOW_MUS_H_ 6 #define ASH_MUS_BRIDGE_WM_WINDOW_MUS_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "ash/common/shell_window_ids.h" 10 #include "ash/common/shell_window_ids.h"
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 bool IsVisible() const override; 127 bool IsVisible() const override;
128 void SetOpacity(float opacity) override; 128 void SetOpacity(float opacity) override;
129 float GetTargetOpacity() const override; 129 float GetTargetOpacity() const override;
130 void SetTransform(const gfx::Transform& transform) override; 130 void SetTransform(const gfx::Transform& transform) override;
131 gfx::Transform GetTargetTransform() const override; 131 gfx::Transform GetTargetTransform() const override;
132 bool IsSystemModal() const override; 132 bool IsSystemModal() const override;
133 bool GetBoolProperty(WmWindowProperty key) override; 133 bool GetBoolProperty(WmWindowProperty key) override;
134 int GetIntProperty(WmWindowProperty key) override; 134 int GetIntProperty(WmWindowProperty key) override;
135 const wm::WindowState* GetWindowState() const override; 135 const wm::WindowState* GetWindowState() const override;
136 WmWindow* GetToplevelWindow() override; 136 WmWindow* GetToplevelWindow() override;
137 WmWindow* GetToplevelWindowForFocus() override;
137 void SetParentUsingContext(WmWindow* context, 138 void SetParentUsingContext(WmWindow* context,
138 const gfx::Rect& screen_bounds) override; 139 const gfx::Rect& screen_bounds) override;
139 void AddChild(WmWindow* window) override; 140 void AddChild(WmWindow* window) override;
140 WmWindow* GetParent() override; 141 WmWindow* GetParent() override;
141 const WmWindow* GetTransientParent() const override; 142 const WmWindow* GetTransientParent() const override;
142 std::vector<WmWindow*> GetTransientChildren() override; 143 std::vector<WmWindow*> GetTransientChildren() override;
143 void SetLayoutManager( 144 void SetLayoutManager(
144 std::unique_ptr<WmLayoutManager> layout_manager) override; 145 std::unique_ptr<WmLayoutManager> layout_manager) override;
145 WmLayoutManager* GetLayoutManager() override; 146 WmLayoutManager* GetLayoutManager() override;
146 void SetVisibilityAnimationType(int type) override; 147 void SetVisibilityAnimationType(int type) override;
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 // resizing easier. 259 // resizing easier.
259 bool children_use_extended_hit_region_ = false; 260 bool children_use_extended_hit_region_ = false;
260 261
261 DISALLOW_COPY_AND_ASSIGN(WmWindowMus); 262 DISALLOW_COPY_AND_ASSIGN(WmWindowMus);
262 }; 263 };
263 264
264 } // namespace mus 265 } // namespace mus
265 } // namespace ash 266 } // namespace ash
266 267
267 #endif // ASH_MUS_BRIDGE_WM_WINDOW_MUS_H_ 268 #endif // ASH_MUS_BRIDGE_WM_WINDOW_MUS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698