summaryrefslogtreecommitdiffstats
path: root/chromium/components/policy/core/common/cloud/cloud_external_data_manager.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/policy/core/common/cloud/cloud_external_data_manager.cc')
-rw-r--r--chromium/components/policy/core/common/cloud/cloud_external_data_manager.cc40
1 files changed, 0 insertions, 40 deletions
diff --git a/chromium/components/policy/core/common/cloud/cloud_external_data_manager.cc b/chromium/components/policy/core/common/cloud/cloud_external_data_manager.cc
deleted file mode 100644
index 0d2995eef77..00000000000
--- a/chromium/components/policy/core/common/cloud/cloud_external_data_manager.cc
+++ /dev/null
@@ -1,40 +0,0 @@
-// 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/cloud_external_data_manager.h"
-
-#include "components/policy/core/common/cloud/cloud_policy_store.h"
-#include "net/url_request/url_request_context_getter.h"
-
-namespace policy {
-
-CloudExternalDataManager::MetadataEntry::MetadataEntry() {
-}
-
-CloudExternalDataManager::MetadataEntry::MetadataEntry(const std::string& url,
- const std::string& hash)
- : url(url),
- hash(hash) {
-}
-
-bool CloudExternalDataManager::MetadataEntry::operator!=(
- const MetadataEntry& other) const {
- return url != other.url || hash != other.hash;
-}
-
-CloudExternalDataManager::CloudExternalDataManager() : policy_store_(NULL),
- weak_factory_(this) {
-}
-
-CloudExternalDataManager::~CloudExternalDataManager() {
-}
-
-void CloudExternalDataManager::SetPolicyStore(CloudPolicyStore* policy_store) {
- weak_factory_.InvalidateWeakPtrs();
- policy_store_ = policy_store;
- if (policy_store_)
- policy_store_->SetExternalDataManager(weak_factory_.GetWeakPtr());
-}
-
-} // namespace policy