OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "ash/test/test_app_list_view_presenter_impl.h" |
| 6 |
| 7 #include "ash/app_list/app_list_presenter_delegate_factory.h" |
| 8 #include "base/memory/ptr_util.h" |
| 9 #include "ui/app_list/presenter/test/test_app_list_view_delegate_factory.h" |
| 10 |
| 11 namespace ash { |
| 12 namespace test { |
| 13 |
| 14 TestAppListViewPresenterImpl::TestAppListViewPresenterImpl() |
| 15 : app_list::AppListPresenterImpl(base::MakeUnique< |
| 16 AppListPresenterDelegateFactory>( |
| 17 base::MakeUnique<app_list::test::TestAppListViewDelegateFactory>())) { |
| 18 } |
| 19 |
| 20 TestAppListViewPresenterImpl::~TestAppListViewPresenterImpl() {} |
| 21 |
| 22 } // namespace test |
| 23 } // namespace ash |
OLD | NEW |