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

Side by Side Diff: ui/views/mus/mus_client.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 | « ui/aura/test/aura_test_base.cc ('k') | ui/views/mus/mus_client.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 UI_VIEWS_MUS_MUS_CLIENT_H_ 5 #ifndef UI_VIEWS_MUS_MUS_CLIENT_H_
6 #define UI_VIEWS_MUS_MUS_CLIENT_H_ 6 #define UI_VIEWS_MUS_MUS_CLIENT_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <map> 10 #include <map>
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 friend class AuraInit; 122 friend class AuraInit;
123 friend class test::MusClientTestApi; 123 friend class test::MusClientTestApi;
124 124
125 // aura::WindowTreeClientDelegate: 125 // aura::WindowTreeClientDelegate:
126 void OnEmbed( 126 void OnEmbed(
127 std::unique_ptr<aura::WindowTreeHostMus> window_tree_host) override; 127 std::unique_ptr<aura::WindowTreeHostMus> window_tree_host) override;
128 void OnLostConnection(aura::WindowTreeClient* client) override; 128 void OnLostConnection(aura::WindowTreeClient* client) override;
129 void OnEmbedRootDestroyed(aura::WindowTreeHostMus* window_tree_host) override; 129 void OnEmbedRootDestroyed(aura::WindowTreeHostMus* window_tree_host) override;
130 void OnPointerEventObserved(const ui::PointerEvent& event, 130 void OnPointerEventObserved(const ui::PointerEvent& event,
131 aura::Window* target) override; 131 aura::Window* target) override;
132 aura::client::CaptureClient* GetCaptureClient() override;
133 aura::PropertyConverter* GetPropertyConverter() override; 132 aura::PropertyConverter* GetPropertyConverter() override;
134 133
135 // ScreenMusDelegate: 134 // ScreenMusDelegate:
136 void OnWindowManagerFrameValuesChanged() override; 135 void OnWindowManagerFrameValuesChanged() override;
137 aura::Window* GetWindowAtScreenPoint(const gfx::Point& point) override; 136 aura::Window* GetWindowAtScreenPoint(const gfx::Point& point) override;
138 137
139 // ui:OSExchangeDataProviderFactory::Factory: 138 // ui:OSExchangeDataProviderFactory::Factory:
140 std::unique_ptr<OSExchangeData::Provider> BuildProvider() override; 139 std::unique_ptr<OSExchangeData::Provider> BuildProvider() override;
141 140
142 static MusClient* instance_; 141 static MusClient* instance_;
(...skipping 19 matching lines...) Expand all
162 161
163 std::unique_ptr<discardable_memory::ClientDiscardableSharedMemoryManager> 162 std::unique_ptr<discardable_memory::ClientDiscardableSharedMemoryManager>
164 discardable_shared_memory_manager_; 163 discardable_shared_memory_manager_;
165 164
166 DISALLOW_COPY_AND_ASSIGN(MusClient); 165 DISALLOW_COPY_AND_ASSIGN(MusClient);
167 }; 166 };
168 167
169 } // namespace views 168 } // namespace views
170 169
171 #endif // UI_VIEWS_MUS_MUS_CLIENT_H_ 170 #endif // UI_VIEWS_MUS_MUS_CLIENT_H_
OLDNEW
« no previous file with comments | « ui/aura/test/aura_test_base.cc ('k') | ui/views/mus/mus_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698