| OLD | NEW | 
|    1 // Copyright 2016 The Chromium Authors. All rights reserved. |    1 // Copyright 2016 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 "ash/test/ash_test_impl_aura.h" |    5 #include "ash/test/ash_test_impl_aura.h" | 
|    6  |    6  | 
|    7 #include "ash/aura/wm_window_aura.h" |    7 #include "ash/aura/wm_window_aura.h" | 
|    8 #include "ash/common/test/ash_test.h" |    8 #include "ash/common/test/ash_test.h" | 
|    9 #include "ash/screen_util.h" |    9 #include "ash/screen_util.h" | 
|   10 #include "ash/shell.h" |   10 #include "ash/shell.h" | 
|   11 #include "ash/test/ash_test_base.h" |   11 #include "ash/test/ash_test_base.h" | 
|   12 #include "base/memory/ptr_util.h" |   12 #include "base/memory/ptr_util.h" | 
|   13 #include "ui/aura/test/test_window_delegate.h" |   13 #include "ui/aura/test/test_window_delegate.h" | 
|   14 #include "ui/display/manager/display_layout.h" |   14 #include "ui/display/display_layout.h" | 
|   15 #include "ui/display/manager/display_manager.h" |   15 #include "ui/display/manager/display_manager.h" | 
|   16 #include "ui/display/screen.h" |   16 #include "ui/display/screen.h" | 
|   17 #include "ui/display/test/display_manager_test_api.h" |   17 #include "ui/display/test/display_manager_test_api.h" | 
|   18 #include "ui/wm/core/window_util.h" |   18 #include "ui/wm/core/window_util.h" | 
|   19  |   19  | 
|   20 namespace ash { |   20 namespace ash { | 
|   21 namespace { |   21 namespace { | 
|   22  |   22  | 
|   23 // AshTestBase is abstract as TestBody() is pure virtual (the various TEST |   23 // AshTestBase is abstract as TestBody() is pure virtual (the various TEST | 
|   24 // macros have the implementation). In order to create AshTestBase we have to |   24 // macros have the implementation). In order to create AshTestBase we have to | 
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  102   ::wm::AddTransientChild(WmWindowAura::GetAuraWindow(parent), |  102   ::wm::AddTransientChild(WmWindowAura::GetAuraWindow(parent), | 
|  103                           WmWindowAura::GetAuraWindow(window)); |  103                           WmWindowAura::GetAuraWindow(window)); | 
|  104 } |  104 } | 
|  105  |  105  | 
|  106 // static |  106 // static | 
|  107 std::unique_ptr<AshTestImpl> AshTestImpl::Create() { |  107 std::unique_ptr<AshTestImpl> AshTestImpl::Create() { | 
|  108   return base::MakeUnique<AshTestImplAura>(); |  108   return base::MakeUnique<AshTestImplAura>(); | 
|  109 } |  109 } | 
|  110  |  110  | 
|  111 }  // namespace ash |  111 }  // namespace ash | 
| OLD | NEW |