blob: 5f620673ac7fe9cb4eb1e501a7ef1b0c22775e41 [file] [log] [blame]
// Copyright (c) 2013 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_CHROMEOS_POLICY_USER_CLOUD_POLICY_TOKEN_FORWARDER_FACTORY_H_
#define CHROME_BROWSER_CHROMEOS_POLICY_USER_CLOUD_POLICY_TOKEN_FORWARDER_FACTORY_H_
#include "base/basictypes.h"
#include "base/memory/singleton.h"
#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
namespace content {
class BrowserContext;
}
namespace policy {
// Creates instances of UserCloudPolicyTokenForwarder for Profiles that may need
// to fetch the policy token.
class UserCloudPolicyTokenForwarderFactory
: public BrowserContextKeyedServiceFactory {
public:
// Returns an instance of the UserCloudPolicyTokenForwarderFactory singleton.
static UserCloudPolicyTokenForwarderFactory* GetInstance();
private:
friend struct DefaultSingletonTraits<UserCloudPolicyTokenForwarderFactory>;
UserCloudPolicyTokenForwarderFactory();
virtual ~UserCloudPolicyTokenForwarderFactory();
// BrowserContextKeyedServiceFactory:
virtual KeyedService* BuildServiceInstanceFor(
content::BrowserContext* context) const override;
virtual bool ServiceIsCreatedWithBrowserContext() const override;
virtual bool ServiceIsNULLWhileTesting() const override;
DISALLOW_COPY_AND_ASSIGN(UserCloudPolicyTokenForwarderFactory);
};
} // namespace policy
#endif // CHROME_BROWSER_CHROMEOS_POLICY_USER_CLOUD_POLICY_TOKEN_FORWARDER_FACTORY_H_