| 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_VIEW_MANAGER_SERVICE_IMPL_H_ | 5 #ifndef COMPONENTS_VIEW_MANAGER_VIEW_MANAGER_SERVICE_IMPL_H_ |
| 6 #define COMPONENTS_VIEW_MANAGER_VIEW_MANAGER_SERVICE_IMPL_H_ | 6 #define COMPONENTS_VIEW_MANAGER_VIEW_MANAGER_SERVICE_IMPL_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 13 #include "base/containers/hash_tables.h" | 13 #include "base/containers/hash_tables.h" |
| 14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 15 #include "components/surfaces/public/interfaces/surface_id.mojom.h" |
| 15 #include "components/view_manager/access_policy_delegate.h" | 16 #include "components/view_manager/access_policy_delegate.h" |
| 16 #include "components/view_manager/ids.h" | 17 #include "components/view_manager/ids.h" |
| 17 #include "third_party/mojo_services/src/surfaces/public/interfaces/surface_id.mo
jom.h" | 18 #include "components/view_manager/public/interfaces/view_manager.mojom.h" |
| 18 #include "third_party/mojo_services/src/view_manager/public/interfaces/view_mana
ger.mojom.h" | |
| 19 | 19 |
| 20 namespace gfx { | 20 namespace gfx { |
| 21 class Rect; | 21 class Rect; |
| 22 } | 22 } |
| 23 | 23 |
| 24 namespace view_manager { | 24 namespace view_manager { |
| 25 | 25 |
| 26 class AccessPolicy; | 26 class AccessPolicy; |
| 27 class ConnectionManager; | 27 class ConnectionManager; |
| 28 class ServerView; | 28 class ServerView; |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 // connection may have no root. A connection has no root if either the root | 251 // connection may have no root. A connection has no root if either the root |
| 252 // is destroyed or Embed() is invoked on the root. | 252 // is destroyed or Embed() is invoked on the root. |
| 253 scoped_ptr<ViewId> root_; | 253 scoped_ptr<ViewId> root_; |
| 254 | 254 |
| 255 DISALLOW_COPY_AND_ASSIGN(ViewManagerServiceImpl); | 255 DISALLOW_COPY_AND_ASSIGN(ViewManagerServiceImpl); |
| 256 }; | 256 }; |
| 257 | 257 |
| 258 } // namespace view_manager | 258 } // namespace view_manager |
| 259 | 259 |
| 260 #endif // COMPONENTS_VIEW_MANAGER_VIEW_MANAGER_SERVICE_IMPL_H_ | 260 #endif // COMPONENTS_VIEW_MANAGER_VIEW_MANAGER_SERVICE_IMPL_H_ |
| OLD | NEW |