#ifndef COMPONENTS_POLICY_CORE_BROWSER_BROWSER_POLICY_CONNECTOR_IOS_H_
#define COMPONENTS_POLICY_CORE_BROWSER_BROWSER_POLICY_CONNECTOR_IOS_H_
#include <string>
#include "base/basictypes.h"
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "components/policy/core/browser/browser_policy_connector.h"
#include "components/policy/policy_export.h"
namespace base {
class SequencedTaskRunner;
}
namespace policy {
class POLICY_EXPORT BrowserPolicyConnectorIOS : public BrowserPolicyConnector {
public:
BrowserPolicyConnectorIOS(
const HandlerListFactory& handler_list_factory,
const std::string& user_agent,
scoped_refptr<base::SequencedTaskRunner> background_task_runner);
virtual ~BrowserPolicyConnectorIOS();
virtual void Init(
PrefService* local_state,
scoped_refptr<net::URLRequestContextGetter> request_context) OVERRIDE;
private:
std::string user_agent_;
DISALLOW_COPY_AND_ASSIGN(BrowserPolicyConnectorIOS);
};
}
#endif