blob: db002ec9bce242f889b6c3cf120458b724f2cf8f [file] [log] [blame]
// 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.
#ifndef ASH_APP_LIST_PRESENTER_APP_LIST_PRESENTER_DELEGATE_FACTORY_H_
#define ASH_APP_LIST_PRESENTER_APP_LIST_PRESENTER_DELEGATE_FACTORY_H_
#include <memory>
#include "ash/app_list/presenter/app_list_presenter_export.h"
namespace app_list {
class AppListPresenterImpl;
class AppListPresenterDelegate;
class APP_LIST_PRESENTER_EXPORT AppListPresenterDelegateFactory {
public:
virtual ~AppListPresenterDelegateFactory() {}
virtual std::unique_ptr<AppListPresenterDelegate> GetDelegate(
AppListPresenterImpl* presenter) = 0;
};
} // namespace app_list
#endif // ASH_APP_LIST_PRESENTER_APP_LIST_PRESENTER_DELEGATE_FACTORY_H_