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

Side by Side Diff: ui/views/mus/mus_client.h

Issue 2741063002: Setup DiscardableMemory in the ash process (Closed)
Patch Set: Fix issues. Created 3 years, 9 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 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 12 matching lines...) Expand all
23 class PropertyConverter; 23 class PropertyConverter;
24 class Window; 24 class Window;
25 class WindowTreeClient; 25 class WindowTreeClient;
26 } 26 }
27 27
28 namespace base { 28 namespace base {
29 class SingleThreadTaskRunner; 29 class SingleThreadTaskRunner;
30 class Thread; 30 class Thread;
31 } 31 }
32 32
33 namespace discardable_memory {
34 class ClientDiscardableSharedMemoryManager;
35 }
36
37 namespace service_manager { 33 namespace service_manager {
38 class Connector; 34 class Connector;
39 } 35 }
40 36
41 namespace wm { 37 namespace wm {
42 class WMState; 38 class WMState;
43 } 39 }
44 40
45 namespace views { 41 namespace views {
46 42
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 142
147 std::unique_ptr<ScreenMus> screen_; 143 std::unique_ptr<ScreenMus> screen_;
148 144
149 std::unique_ptr<aura::PropertyConverter> property_converter_; 145 std::unique_ptr<aura::PropertyConverter> property_converter_;
150 std::unique_ptr<MusPropertyMirror> mus_property_mirror_; 146 std::unique_ptr<MusPropertyMirror> mus_property_mirror_;
151 147
152 std::unique_ptr<aura::WindowTreeClient> window_tree_client_; 148 std::unique_ptr<aura::WindowTreeClient> window_tree_client_;
153 149
154 std::unique_ptr<PointerWatcherEventRouter> pointer_watcher_event_router_; 150 std::unique_ptr<PointerWatcherEventRouter> pointer_watcher_event_router_;
155 151
156 std::unique_ptr<discardable_memory::ClientDiscardableSharedMemoryManager>
157 discardable_shared_memory_manager_;
158
159 DISALLOW_COPY_AND_ASSIGN(MusClient); 152 DISALLOW_COPY_AND_ASSIGN(MusClient);
160 }; 153 };
161 154
162 } // namespace views 155 } // namespace views
163 156
164 #endif // UI_VIEWS_MUS_MUS_CLIENT_H_ 157 #endif // UI_VIEWS_MUS_MUS_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698