| Index: ui/app_list/presenter/test/test_app_list_view_delegate_factory.cc
|
| diff --git a/ui/app_list/presenter/test/test_app_list_view_delegate_factory.cc b/ui/app_list/presenter/test/test_app_list_view_delegate_factory.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b982518b873d9269a560a5fd830ac073ba636171
|
| --- /dev/null
|
| +++ b/ui/app_list/presenter/test/test_app_list_view_delegate_factory.cc
|
| @@ -0,0 +1,19 @@
|
| +// Copyright 2016 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "ui/app_list/presenter/test/test_app_list_view_delegate_factory.h"
|
| +
|
| +namespace app_list {
|
| +namespace test {
|
| +
|
| +TestAppListViewDelegateFactory::TestAppListViewDelegateFactory() {}
|
| +
|
| +TestAppListViewDelegateFactory::~TestAppListViewDelegateFactory() {}
|
| +
|
| +AppListViewDelegate* TestAppListViewDelegateFactory::GetDelegate() {
|
| + return &delegate_;
|
| +}
|
| +
|
| +} // namespace test
|
| +} // namespace app_list
|
|
|