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 #include <string> | 5 #include <string> |
6 #include <vector> | 6 #include <vector> |
7 | 7 |
8 #include "base/at_exit.h" | 8 #include "base/at_exit.h" |
9 #include "base/auto_reset.h" | 9 #include "base/auto_reset.h" |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "base/memory/scoped_vector.h" | 12 #include "base/memory/scoped_vector.h" |
13 #include "base/message_loop/message_loop.h" | 13 #include "base/message_loop/message_loop.h" |
14 #include "base/run_loop.h" | 14 #include "base/run_loop.h" |
15 #include "base/strings/stringprintf.h" | 15 #include "base/strings/stringprintf.h" |
16 #include "mojo/common/common_type_converters.h" | 16 #include "mojo/common/common_type_converters.h" |
17 #include "mojo/public/cpp/application/application.h" | 17 #include "mojo/public/cpp/application/application.h" |
18 #include "mojo/public/cpp/application/connect.h" | 18 #include "mojo/public/cpp/application/connect.h" |
19 #include "mojo/public/cpp/bindings/lib/router.h" | 19 #include "mojo/public/cpp/bindings/lib/router.h" |
20 #include "mojo/service_manager/service_manager.h" | 20 #include "mojo/service_manager/service_manager.h" |
21 #include "mojo/services/public/cpp/geometry/geometry_type_converters.h" | 21 #include "mojo/services/public/cpp/geometry/geometry_type_converters.h" |
| 22 #include "mojo/services/public/cpp/view_manager/types.h" |
22 #include "mojo/services/public/cpp/view_manager/util.h" | 23 #include "mojo/services/public/cpp/view_manager/util.h" |
23 #include "mojo/services/public/cpp/view_manager/view_manager_types.h" | |
24 #include "mojo/services/public/interfaces/view_manager/view_manager.mojom.h" | 24 #include "mojo/services/public/interfaces/view_manager/view_manager.mojom.h" |
25 #include "mojo/services/view_manager/ids.h" | 25 #include "mojo/services/view_manager/ids.h" |
26 #include "mojo/services/view_manager/test_change_tracker.h" | 26 #include "mojo/services/view_manager/test_change_tracker.h" |
27 #include "mojo/shell/shell_test_helper.h" | 27 #include "mojo/shell/shell_test_helper.h" |
28 #include "testing/gtest/include/gtest/gtest.h" | 28 #include "testing/gtest/include/gtest/gtest.h" |
29 #include "ui/gfx/geometry/rect.h" | 29 #include "ui/gfx/geometry/rect.h" |
30 | 30 |
31 namespace mojo { | 31 namespace mojo { |
32 namespace view_manager { | 32 namespace view_manager { |
33 namespace service { | 33 namespace service { |
(...skipping 1298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1332 // TODO(sky): add coverage of test that destroys connections and ensures other | 1332 // TODO(sky): add coverage of test that destroys connections and ensures other |
1333 // connections get deletion notification (or advanced server id). | 1333 // connections get deletion notification (or advanced server id). |
1334 | 1334 |
1335 // TODO(sky): need to better track changes to initial connection. For example, | 1335 // TODO(sky): need to better track changes to initial connection. For example, |
1336 // that SetBounsdNodes/AddNode and the like don't result in messages to the | 1336 // that SetBounsdNodes/AddNode and the like don't result in messages to the |
1337 // originating connection. | 1337 // originating connection. |
1338 | 1338 |
1339 } // namespace service | 1339 } // namespace service |
1340 } // namespace view_manager | 1340 } // namespace view_manager |
1341 } // namespace mojo | 1341 } // namespace mojo |
OLD | NEW |