summaryrefslogtreecommitdiff
path: root/chromium/components/data_reduction_proxy/core/browser/data_store.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/data_reduction_proxy/core/browser/data_store.cc')
-rw-r--r--chromium/components/data_reduction_proxy/core/browser/data_store.cc35
1 files changed, 0 insertions, 35 deletions
diff --git a/chromium/components/data_reduction_proxy/core/browser/data_store.cc b/chromium/components/data_reduction_proxy/core/browser/data_store.cc
deleted file mode 100644
index 782a1944b47..00000000000
--- a/chromium/components/data_reduction_proxy/core/browser/data_store.cc
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright 2015 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/data_reduction_proxy/core/browser/data_store.h"
-
-namespace data_reduction_proxy {
-
-DataStore::DataStore() {
-}
-
-DataStore::~DataStore() {
-}
-
-void DataStore::InitializeOnDBThread() {
-}
-
-DataStore::Status DataStore::Get(base::StringPiece key, std::string* value) {
- return DataStore::Status::NOT_FOUND;
-}
-
-DataStore::Status DataStore::Put(
- const std::map<std::string, std::string>& map) {
- return DataStore::Status::OK;
-}
-
-DataStore::Status DataStore::Delete(base::StringPiece key) {
- return DataStore::Status::OK;
-}
-
-DataStore::Status DataStore::RecreateDB() {
- return DataStore::Status::OK;
-}
-
-} // namespace data_reduction_proxy