#ifndef CHROME_BROWSER_UI_APP_LIST_SEARCH_HISTORY_FACTORY_H_
#define CHROME_BROWSER_UI_APP_LIST_SEARCH_HISTORY_FACTORY_H_
#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
template<typename T> struct DefaultSingletonTraits;
namespace content {
class BrowserContext;
}
namespace app_list {
class History;
class HistoryFactory : public BrowserContextKeyedServiceFactory {
public:
static HistoryFactory* GetInstance();
static History* GetForBrowserContext(content::BrowserContext* context);
private:
friend struct DefaultSingletonTraits<HistoryFactory>;
HistoryFactory();
virtual ~HistoryFactory();
virtual KeyedService* BuildServiceInstanceFor(
content::BrowserContext* context) const OVERRIDE;
DISALLOW_COPY_AND_ASSIGN(HistoryFactory);
};
}
#endif