| 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/public/interfaces/view_manager/view_manager.mojom.h" | 15 #include "mojo/services/public/interfaces/view_manager/view_manager.mojom.h" |
| 16 #include "mojo/services/public/interfaces/window_manager/window_manager_internal
.mojom.h" | 16 #include "mojo/services/window_manager/public/interfaces/window_manager_internal
.mojom.h" |
| 17 #include "services/view_manager/ids.h" | 17 #include "services/view_manager/ids.h" |
| 18 #include "services/view_manager/server_view_delegate.h" | 18 #include "services/view_manager/server_view_delegate.h" |
| 19 | 19 |
| 20 namespace mojo { | 20 namespace mojo { |
| 21 namespace service { | 21 namespace service { |
| 22 | 22 |
| 23 class ClientConnection; | 23 class ClientConnection; |
| 24 class ConnectionManagerDelegate; | 24 class ConnectionManagerDelegate; |
| 25 class DisplayManager; | 25 class DisplayManager; |
| 26 class ServerView; | 26 class ServerView; |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 // TODO(sky): nuke! Just a proof of concept until get real animation api. | 220 // TODO(sky): nuke! Just a proof of concept until get real animation api. |
| 221 base::RepeatingTimer<ConnectionManager> animation_timer_; | 221 base::RepeatingTimer<ConnectionManager> animation_timer_; |
| 222 | 222 |
| 223 DISALLOW_COPY_AND_ASSIGN(ConnectionManager); | 223 DISALLOW_COPY_AND_ASSIGN(ConnectionManager); |
| 224 }; | 224 }; |
| 225 | 225 |
| 226 } // namespace service | 226 } // namespace service |
| 227 } // namespace mojo | 227 } // namespace mojo |
| 228 | 228 |
| 229 #endif // SERVICES_VIEW_MANAGER_CONNECTION_MANAGER_H_ | 229 #endif // SERVICES_VIEW_MANAGER_CONNECTION_MANAGER_H_ |
| OLD | NEW |