| 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 <map> | 5 #include <map> |
| 6 | 6 |
| 7 #include "base/memory/scoped_ptr.h" | 7 #include "base/memory/scoped_ptr.h" |
| 8 #include "base/rand_util.h" | 8 #include "base/rand_util.h" |
| 9 #include "base/string_util.h" | 9 #include "base/string_util.h" |
| 10 #include "base/utf_string_conversions.h" | 10 #include "base/utf_string_conversions.h" |
| 11 #include "testing/gmock/include/gmock/gmock.h" | 11 #include "testing/gmock/include/gmock/gmock.h" |
| 12 #include "ui/base/accelerators/accelerator.h" | 12 #include "ui/base/accelerators/accelerator.h" |
| 13 #include "ui/base/clipboard/clipboard.h" | 13 #include "ui/base/clipboard/clipboard.h" |
| 14 #include "ui/base/keycodes/keyboard_codes.h" | 14 #include "ui/base/keycodes/keyboard_codes.h" |
| 15 #include "ui/base/l10n/l10n_util.h" | 15 #include "ui/base/l10n/l10n_util.h" |
| 16 #include "ui/base/models/simple_menu_model.h" | 16 #include "ui/base/models/simple_menu_model.h" |
| 17 #include "ui/compositor/compositor.h" |
| 18 #include "ui/compositor/layer.h" |
| 19 #include "ui/compositor/layer_animator.h" |
| 17 #include "ui/gfx/canvas.h" | 20 #include "ui/gfx/canvas.h" |
| 18 #include "ui/gfx/compositor/compositor.h" | |
| 19 #include "ui/gfx/compositor/layer.h" | |
| 20 #include "ui/gfx/compositor/layer_animator.h" | |
| 21 #include "ui/gfx/path.h" | 21 #include "ui/gfx/path.h" |
| 22 #include "ui/gfx/transform.h" | 22 #include "ui/gfx/transform.h" |
| 23 #include "ui/views/background.h" | 23 #include "ui/views/background.h" |
| 24 #include "ui/views/controls/button/button_dropdown.h" | 24 #include "ui/views/controls/button/button_dropdown.h" |
| 25 #include "ui/views/controls/button/checkbox.h" | 25 #include "ui/views/controls/button/checkbox.h" |
| 26 #include "ui/views/controls/native/native_view_host.h" | 26 #include "ui/views/controls/native/native_view_host.h" |
| 27 #include "ui/views/controls/scroll_view.h" | 27 #include "ui/views/controls/scroll_view.h" |
| 28 #include "ui/views/controls/textfield/textfield.h" | 28 #include "ui/views/controls/textfield/textfield.h" |
| 29 #include "ui/views/events/event.h" | 29 #include "ui/views/events/event.h" |
| 30 #include "ui/views/focus/accelerator_handler.h" | 30 #include "ui/views/focus/accelerator_handler.h" |
| (...skipping 3125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3156 | 3156 |
| 3157 // Move c1 to the front. The layers should have moved too. | 3157 // Move c1 to the front. The layers should have moved too. |
| 3158 content->ReorderChildView(c1, -1); | 3158 content->ReorderChildView(c1, -1); |
| 3159 EXPECT_EQ(c1->layer(), parent_layer->children()[1]); | 3159 EXPECT_EQ(c1->layer(), parent_layer->children()[1]); |
| 3160 EXPECT_EQ(c2->layer(), parent_layer->children()[0]); | 3160 EXPECT_EQ(c2->layer(), parent_layer->children()[0]); |
| 3161 } | 3161 } |
| 3162 | 3162 |
| 3163 #endif // USE_AURA | 3163 #endif // USE_AURA |
| 3164 | 3164 |
| 3165 } // namespace views | 3165 } // namespace views |
| OLD | NEW |