summaryrefslogtreecommitdiffstats
path: root/chromium/components/policy/core/common/cloud/component_cloud_policy_service_stub.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/policy/core/common/cloud/component_cloud_policy_service_stub.cc')
-rw-r--r--chromium/components/policy/core/common/cloud/component_cloud_policy_service_stub.cc52
1 files changed, 52 insertions, 0 deletions
diff --git a/chromium/components/policy/core/common/cloud/component_cloud_policy_service_stub.cc b/chromium/components/policy/core/common/cloud/component_cloud_policy_service_stub.cc
new file mode 100644
index 00000000000..abbaf24fbbd
--- /dev/null
+++ b/chromium/components/policy/core/common/cloud/component_cloud_policy_service_stub.cc
@@ -0,0 +1,52 @@
+// Copyright 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.
+
+#include "components/policy/core/common/cloud/component_cloud_policy_service.h"
+
+#include "base/task/sequenced_task_runner.h"
+
+namespace policy {
+
+ComponentCloudPolicyService::Delegate::~Delegate() {}
+
+ComponentCloudPolicyService::ComponentCloudPolicyService(
+ const std::string& policy_type,
+ Delegate* delegate,
+ SchemaRegistry* schema_registry,
+ CloudPolicyCore* core,
+ CloudPolicyClient* client,
+ scoped_refptr<base::SequencedTaskRunner> backend_task_runner)
+ : policy_installed_(true), weak_ptr_factory_(this) {}
+
+ComponentCloudPolicyService::~ComponentCloudPolicyService() {}
+
+// static
+bool ComponentCloudPolicyService::SupportsDomain(PolicyDomain domain) {
+ return false;
+}
+
+void ComponentCloudPolicyService::OnSchemaRegistryReady() {}
+
+void ComponentCloudPolicyService::OnSchemaRegistryUpdated(
+ bool has_new_schemas) {}
+
+void ComponentCloudPolicyService::OnCoreConnected(CloudPolicyCore* core) {}
+
+void ComponentCloudPolicyService::OnCoreDisconnecting(CloudPolicyCore* core) {}
+
+void ComponentCloudPolicyService::OnRefreshSchedulerStarted(
+ CloudPolicyCore* core) {}
+
+void ComponentCloudPolicyService::OnStoreLoaded(CloudPolicyStore* store) {}
+
+void ComponentCloudPolicyService::OnStoreError(CloudPolicyStore* store) {}
+
+void ComponentCloudPolicyService::OnPolicyFetched(CloudPolicyClient* client) {}
+
+void ComponentCloudPolicyService::OnRegistrationStateChanged(
+ CloudPolicyClient* client) {}
+
+void ComponentCloudPolicyService::OnClientError(CloudPolicyClient* client) {}
+
+} // namespace policy