| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "ui/aura/window.h" | 5 #include "ui/aura/window.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 #include <utility> | 8 #include <utility> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 13 #include "base/strings/string_number_conversions.h" | 13 #include "base/strings/string_number_conversions.h" |
| 14 #include "base/strings/string_util.h" | 14 #include "base/strings/string_util.h" |
| 15 #include "base/strings/stringprintf.h" | 15 #include "base/strings/stringprintf.h" |
| 16 #include "testing/gtest/include/gtest/gtest.h" | 16 #include "testing/gtest/include/gtest/gtest.h" |
| 17 #include "ui/aura/client/capture_client.h" | 17 #include "ui/aura/client/capture_client.h" |
| 18 #include "ui/aura/client/focus_change_observer.h" | 18 #include "ui/aura/client/focus_change_observer.h" |
| 19 #include "ui/aura/client/visibility_client.h" | 19 #include "ui/aura/client/visibility_client.h" |
| 20 #include "ui/aura/client/window_tree_client.h" | 20 #include "ui/aura/client/window_tree_client.h" |
| 21 #include "ui/aura/root_window.h" | |
| 22 #include "ui/aura/root_window_observer.h" | 21 #include "ui/aura/root_window_observer.h" |
| 23 #include "ui/aura/test/aura_test_base.h" | 22 #include "ui/aura/test/aura_test_base.h" |
| 24 #include "ui/aura/test/event_generator.h" | 23 #include "ui/aura/test/event_generator.h" |
| 25 #include "ui/aura/test/test_window_delegate.h" | 24 #include "ui/aura/test/test_window_delegate.h" |
| 26 #include "ui/aura/test/test_windows.h" | 25 #include "ui/aura/test/test_windows.h" |
| 27 #include "ui/aura/test/window_test_api.h" | 26 #include "ui/aura/test/window_test_api.h" |
| 28 #include "ui/aura/window_delegate.h" | 27 #include "ui/aura/window_delegate.h" |
| 28 #include "ui/aura/window_event_dispatcher.h" |
| 29 #include "ui/aura/window_observer.h" | 29 #include "ui/aura/window_observer.h" |
| 30 #include "ui/aura/window_property.h" | 30 #include "ui/aura/window_property.h" |
| 31 #include "ui/aura/window_tree_host.h" | 31 #include "ui/aura/window_tree_host.h" |
| 32 #include "ui/base/hit_test.h" | 32 #include "ui/base/hit_test.h" |
| 33 #include "ui/compositor/layer.h" | 33 #include "ui/compositor/layer.h" |
| 34 #include "ui/compositor/scoped_animation_duration_scale_mode.h" | 34 #include "ui/compositor/scoped_animation_duration_scale_mode.h" |
| 35 #include "ui/compositor/scoped_layer_animation_settings.h" | 35 #include "ui/compositor/scoped_layer_animation_settings.h" |
| 36 #include "ui/compositor/test/test_layers.h" | 36 #include "ui/compositor/test/test_layers.h" |
| 37 #include "ui/events/event.h" | 37 #include "ui/events/event.h" |
| 38 #include "ui/events/event_utils.h" | 38 #include "ui/events/event_utils.h" |
| (...skipping 3284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3323 BuildRootLayerTreeDescription(*root.layer())) | 3323 BuildRootLayerTreeDescription(*root.layer())) |
| 3324 << "layer tree doesn't match at " << i; | 3324 << "layer tree doesn't match at " << i; |
| 3325 EXPECT_EQ(data[i].expected_description, | 3325 EXPECT_EQ(data[i].expected_description, |
| 3326 BuildRootWindowTreeDescription(root)) | 3326 BuildRootWindowTreeDescription(root)) |
| 3327 << "window tree doesn't match at " << i; | 3327 << "window tree doesn't match at " << i; |
| 3328 } | 3328 } |
| 3329 } | 3329 } |
| 3330 | 3330 |
| 3331 } // namespace test | 3331 } // namespace test |
| 3332 } // namespace aura | 3332 } // namespace aura |
| OLD | NEW |