OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "base/basictypes.h" | 5 #include "base/basictypes.h" |
6 #include "base/logging.h" | 6 #include "base/logging.h" |
7 #include "base/message_loop.h" | 7 #include "base/message_loop/message_loop.h" |
8 #include "ui/aura/root_window.h" | 8 #include "ui/aura/root_window.h" |
9 #include "ui/aura/test/ui_controls_factory_aura.h" | 9 #include "ui/aura/test/ui_controls_factory_aura.h" |
10 #include "ui/base/test/ui_controls_aura.h" | 10 #include "ui/base/test/ui_controls_aura.h" |
11 #include "ui/base/test/ui_controls_internal_win.h" | 11 #include "ui/base/test/ui_controls_internal_win.h" |
12 | 12 |
13 namespace aura { | 13 namespace aura { |
14 namespace test { | 14 namespace test { |
15 | 15 |
16 namespace { | 16 namespace { |
17 | 17 |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 }; | 82 }; |
83 | 83 |
84 } // namespace | 84 } // namespace |
85 | 85 |
86 UIControlsAura* CreateUIControlsAura(aura::RootWindow* root_window) { | 86 UIControlsAura* CreateUIControlsAura(aura::RootWindow* root_window) { |
87 return new UIControlsWin(); | 87 return new UIControlsWin(); |
88 } | 88 } |
89 | 89 |
90 } // namespace test | 90 } // namespace test |
91 } // namespace aura | 91 } // namespace aura |
OLD | NEW |