blob: 935416c47c6dc495adf064baed2be1e1b1491d01 [file] [log] [blame]
// Copyright 2018 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 CHROME_BROWSER_APPS_APP_SERVICE_ARC_APPS_FACTORY_H_
#define CHROME_BROWSER_APPS_APP_SERVICE_ARC_APPS_FACTORY_H_
#include "base/macros.h"
#include "base/memory/singleton.h"
#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
class Profile;
namespace apps {
class ArcApps;
class ArcAppsFactory : public BrowserContextKeyedServiceFactory {
public:
static ArcApps* GetForProfile(Profile* profile);
static ArcAppsFactory* GetInstance();
static bool IsEnabled();
private:
friend struct base::DefaultSingletonTraits<ArcAppsFactory>;
ArcAppsFactory();
~ArcAppsFactory() override;
// BrowserContextKeyedServiceFactory overrides.
KeyedService* BuildServiceInstanceFor(
content::BrowserContext* context) const override;
DISALLOW_COPY_AND_ASSIGN(ArcAppsFactory);
};
} // namespace apps
#endif // CHROME_BROWSER_APPS_APP_SERVICE_ARC_APPS_FACTORY_H_