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

Side by Side Diff: mash/simple_wm/simple_wm.h

Issue 2657873006: Remove WindowTreeClientDelegate::GetCaptureClient() and WindowTreeClient::GetCaptureClient(). (Closed)
Patch Set: rebase Created 3 years, 10 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/mus/window_manager_unittest.cc ('k') | mash/simple_wm/simple_wm.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 MASH_SIMPLE_WM_SIMPLE_WM_H_ 5 #ifndef MASH_SIMPLE_WM_SIMPLE_WM_H_
6 #define MASH_SIMPLE_WM_SIMPLE_WM_H_ 6 #define MASH_SIMPLE_WM_SIMPLE_WM_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <utility> 9 #include <utility>
10 10
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 // service_manager::Service: 60 // service_manager::Service:
61 void OnStart() override; 61 void OnStart() override;
62 62
63 // aura::WindowTreeClientDelegate: 63 // aura::WindowTreeClientDelegate:
64 void OnEmbed( 64 void OnEmbed(
65 std::unique_ptr<aura::WindowTreeHostMus> window_tree_host) override; 65 std::unique_ptr<aura::WindowTreeHostMus> window_tree_host) override;
66 void OnLostConnection(aura::WindowTreeClient* client) override; 66 void OnLostConnection(aura::WindowTreeClient* client) override;
67 void OnEmbedRootDestroyed(aura::WindowTreeHostMus* window_tree_host) override; 67 void OnEmbedRootDestroyed(aura::WindowTreeHostMus* window_tree_host) override;
68 void OnPointerEventObserved(const ui::PointerEvent& event, 68 void OnPointerEventObserved(const ui::PointerEvent& event,
69 aura::Window* target) override; 69 aura::Window* target) override;
70 aura::client::CaptureClient* GetCaptureClient() override;
71 aura::PropertyConverter* GetPropertyConverter() override; 70 aura::PropertyConverter* GetPropertyConverter() override;
72 71
73 // aura::WindowManagerDelegate: 72 // aura::WindowManagerDelegate:
74 void SetWindowManagerClient(aura::WindowManagerClient* client) override; 73 void SetWindowManagerClient(aura::WindowManagerClient* client) override;
75 bool OnWmSetBounds(aura::Window* window, gfx::Rect* bounds) override; 74 bool OnWmSetBounds(aura::Window* window, gfx::Rect* bounds) override;
76 bool OnWmSetProperty( 75 bool OnWmSetProperty(
77 aura::Window* window, 76 aura::Window* window,
78 const std::string& name, 77 const std::string& name,
79 std::unique_ptr<std::vector<uint8_t>>* new_data) override; 78 std::unique_ptr<std::vector<uint8_t>>* new_data) override;
80 void OnWmSetCanFocus(aura::Window* window, bool can_focus) override; 79 void OnWmSetCanFocus(aura::Window* window, bool can_focus) override;
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 std::unique_ptr<WorkspaceLayoutManager> workspace_layout_manager_; 123 std::unique_ptr<WorkspaceLayoutManager> workspace_layout_manager_;
125 124
126 bool started_ = false; 125 bool started_ = false;
127 126
128 DISALLOW_COPY_AND_ASSIGN(SimpleWM); 127 DISALLOW_COPY_AND_ASSIGN(SimpleWM);
129 }; 128 };
130 129
131 } // namespace simple_wm 130 } // namespace simple_wm
132 131
133 #endif // MASH_SIMPLE_WM_SIMPLE_WM_H_ 132 #endif // MASH_SIMPLE_WM_SIMPLE_WM_H_
OLDNEW
« no previous file with comments | « ash/mus/window_manager_unittest.cc ('k') | mash/simple_wm/simple_wm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698