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

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

Issue 2168733002: Splits debug_commands into aura and non-aura parts (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: moar 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_ROOT_WINDOW_CONTROLLER_MUS_H_ 5 #ifndef ASH_MUS_BRIDGE_WM_ROOT_WINDOW_CONTROLLER_MUS_H_
6 #define ASH_MUS_BRIDGE_WM_ROOT_WINDOW_CONTROLLER_MUS_H_ 6 #define ASH_MUS_BRIDGE_WM_ROOT_WINDOW_CONTROLLER_MUS_H_
7 7
8 #include "ash/common/wm_root_window_controller.h" 8 #include "ash/common/wm_root_window_controller.h"
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "base/observer_list.h" 10 #include "base/observer_list.h"
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 std::unique_ptr<WorkspaceLayoutManagerBackdropDelegate> delegate) 59 std::unique_ptr<WorkspaceLayoutManagerBackdropDelegate> delegate)
60 override; 60 override;
61 AlwaysOnTopController* GetAlwaysOnTopController() override; 61 AlwaysOnTopController* GetAlwaysOnTopController() override;
62 WmShelf* GetShelf() override; 62 WmShelf* GetShelf() override;
63 WmWindow* GetWindow() override; 63 WmWindow* GetWindow() override;
64 void ConfigureWidgetInitParamsForContainer( 64 void ConfigureWidgetInitParamsForContainer(
65 views::Widget* widget, 65 views::Widget* widget,
66 int shell_container_id, 66 int shell_container_id,
67 views::Widget::InitParams* init_params) override; 67 views::Widget::InitParams* init_params) override;
68 WmWindow* FindEventTarget(const gfx::Point& location_in_screen) override; 68 WmWindow* FindEventTarget(const gfx::Point& location_in_screen) override;
69 gfx::Point GetLastMouseLocationInRoot() override;
69 void AddObserver(WmRootWindowControllerObserver* observer) override; 70 void AddObserver(WmRootWindowControllerObserver* observer) override;
70 void RemoveObserver(WmRootWindowControllerObserver* observer) override; 71 void RemoveObserver(WmRootWindowControllerObserver* observer) override;
71 72
72 private: 73 private:
73 WmShellMus* shell_; 74 WmShellMus* shell_;
74 RootWindowController* root_window_controller_; 75 RootWindowController* root_window_controller_;
75 base::ObserverList<WmRootWindowControllerObserver> observers_; 76 base::ObserverList<WmRootWindowControllerObserver> observers_;
76 77
77 DISALLOW_COPY_AND_ASSIGN(WmRootWindowControllerMus); 78 DISALLOW_COPY_AND_ASSIGN(WmRootWindowControllerMus);
78 }; 79 };
79 80
80 } // namespace mus 81 } // namespace mus
81 } // namespace ash 82 } // namespace ash
82 83
83 #endif // ASH_MUS_BRIDGE_WM_ROOT_WINDOW_CONTROLLER_MUS_H_ 84 #endif // ASH_MUS_BRIDGE_WM_ROOT_WINDOW_CONTROLLER_MUS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698