OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 SERVICES_VIEW_MANAGER_CONNECTION_MANAGER_H_ | 5 #ifndef SERVICES_VIEW_MANAGER_CONNECTION_MANAGER_H_ |
6 #define SERVICES_VIEW_MANAGER_CONNECTION_MANAGER_H_ | 6 #define SERVICES_VIEW_MANAGER_CONNECTION_MANAGER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "base/timer/timer.h" | 13 #include "base/timer/timer.h" |
14 #include "mojo/public/cpp/bindings/array.h" | 14 #include "mojo/public/cpp/bindings/array.h" |
15 #include "mojo/services/view_manager/public/interfaces/view_manager.mojom.h" | 15 #include "mojo/services/view_manager/interfaces/view_manager.mojom.h" |
16 #include "mojo/services/window_manager/public/interfaces/window_manager_internal
.mojom.h" | 16 #include "mojo/services/window_manager/interfaces/window_manager_internal.mojom.
h" |
17 #include "services/view_manager/animation_runner.h" | 17 #include "services/view_manager/animation_runner.h" |
18 #include "services/view_manager/ids.h" | 18 #include "services/view_manager/ids.h" |
19 #include "services/view_manager/server_view_delegate.h" | 19 #include "services/view_manager/server_view_delegate.h" |
20 #include "services/view_manager/server_view_observer.h" | 20 #include "services/view_manager/server_view_observer.h" |
21 | 21 |
22 namespace view_manager { | 22 namespace view_manager { |
23 | 23 |
24 class ClientConnection; | 24 class ClientConnection; |
25 class ConnectionManagerDelegate; | 25 class ConnectionManagerDelegate; |
26 class DisplayManager; | 26 class DisplayManager; |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
243 base::RepeatingTimer<ConnectionManager> animation_timer_; | 243 base::RepeatingTimer<ConnectionManager> animation_timer_; |
244 | 244 |
245 AnimationRunner animation_runner_; | 245 AnimationRunner animation_runner_; |
246 | 246 |
247 DISALLOW_COPY_AND_ASSIGN(ConnectionManager); | 247 DISALLOW_COPY_AND_ASSIGN(ConnectionManager); |
248 }; | 248 }; |
249 | 249 |
250 } // namespace view_manager | 250 } // namespace view_manager |
251 | 251 |
252 #endif // SERVICES_VIEW_MANAGER_CONNECTION_MANAGER_H_ | 252 #endif // SERVICES_VIEW_MANAGER_CONNECTION_MANAGER_H_ |
OLD | NEW |