| 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 <stddef.h> |
| 6 #include <stdint.h> |
| 7 |
| 5 #include "base/bind.h" | 8 #include "base/bind.h" |
| 6 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/macros.h" |
| 7 #include "base/run_loop.h" | 11 #include "base/run_loop.h" |
| 8 #include "components/mus/common/util.h" | 12 #include "components/mus/common/util.h" |
| 9 #include "components/mus/public/cpp/tests/window_server_test_base.h" | 13 #include "components/mus/public/cpp/tests/window_server_test_base.h" |
| 10 #include "components/mus/public/cpp/window_observer.h" | 14 #include "components/mus/public/cpp/window_observer.h" |
| 11 #include "components/mus/public/cpp/window_tree_connection.h" | 15 #include "components/mus/public/cpp/window_tree_connection.h" |
| 12 #include "components/mus/public/cpp/window_tree_connection_observer.h" | 16 #include "components/mus/public/cpp/window_tree_connection_observer.h" |
| 13 #include "components/mus/public/cpp/window_tree_delegate.h" | 17 #include "components/mus/public/cpp/window_tree_delegate.h" |
| 14 #include "mojo/application/public/cpp/application_connection.h" | 18 #include "mojo/application/public/cpp/application_connection.h" |
| 15 #include "mojo/application/public/cpp/application_impl.h" | 19 #include "mojo/application/public/cpp/application_impl.h" |
| 16 #include "mojo/application/public/cpp/application_test_base.h" | 20 #include "mojo/application/public/cpp/application_test_base.h" |
| (...skipping 1035 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1052 WaitForBoundsToChange(embedded_connection->GetRoot()); | 1056 WaitForBoundsToChange(embedded_connection->GetRoot()); |
| 1053 EXPECT_TRUE(gfx::Rect(21, 22, 23, 24) == | 1057 EXPECT_TRUE(gfx::Rect(21, 22, 23, 24) == |
| 1054 embedded_connection->GetRoot()->bounds()); | 1058 embedded_connection->GetRoot()->bounds()); |
| 1055 EXPECT_TRUE(gfx::Insets(1, 2, 3, 4) == | 1059 EXPECT_TRUE(gfx::Insets(1, 2, 3, 4) == |
| 1056 embedded_connection->GetRoot()->client_area()); | 1060 embedded_connection->GetRoot()->client_area()); |
| 1057 } | 1061 } |
| 1058 | 1062 |
| 1059 } // namespace ws | 1063 } // namespace ws |
| 1060 | 1064 |
| 1061 } // namespace mus | 1065 } // namespace mus |
| OLD | NEW |