| 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 COMPONENTS_VIEW_MANAGER_CONNECTION_MANAGER_H_ | 5 #ifndef COMPONENTS_VIEW_MANAGER_CONNECTION_MANAGER_H_ |
| 6 #define COMPONENTS_VIEW_MANAGER_CONNECTION_MANAGER_H_ | 6 #define COMPONENTS_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 "components/view_manager/animation_runner.h" | 14 #include "components/view_manager/animation_runner.h" |
| 15 #include "components/view_manager/ids.h" | 15 #include "components/view_manager/ids.h" |
| 16 #include "components/view_manager/public/interfaces/view_manager.mojom.h" |
| 16 #include "components/view_manager/server_view_delegate.h" | 17 #include "components/view_manager/server_view_delegate.h" |
| 17 #include "components/view_manager/server_view_observer.h" | 18 #include "components/view_manager/server_view_observer.h" |
| 19 #include "components/window_manager/public/interfaces/window_manager_internal.mo
jom.h" |
| 18 #include "third_party/mojo/src/mojo/public/cpp/bindings/array.h" | 20 #include "third_party/mojo/src/mojo/public/cpp/bindings/array.h" |
| 19 #include "third_party/mojo_services/src/view_manager/public/interfaces/view_mana
ger.mojom.h" | |
| 20 #include "third_party/mojo_services/src/window_manager/public/interfaces/window_
manager_internal.mojom.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; |
| 27 class ServerView; | 27 class ServerView; |
| 28 class ViewManagerServiceImpl; | 28 class ViewManagerServiceImpl; |
| 29 | 29 |
| 30 // ConnectionManager manages the set of connections to the ViewManager (all the | 30 // ConnectionManager manages the set of connections to the ViewManager (all the |
| (...skipping 212 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 // COMPONENTS_VIEW_MANAGER_CONNECTION_MANAGER_H_ | 252 #endif // COMPONENTS_VIEW_MANAGER_CONNECTION_MANAGER_H_ |
| OLD | NEW |