| Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_store.cc
|
| diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_store.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_store.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2d6960a9296d519a0f83d0f0ff5c3914959f1dbd
|
| --- /dev/null
|
| +++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_store.cc
|
| @@ -0,0 +1,29 @@
|
| +// 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_reduction_proxy_store.h"
|
| +
|
| +namespace data_reduction_proxy {
|
| +
|
| +DataReductionProxyStore::DataReductionProxyStore() {
|
| +}
|
| +
|
| +DataReductionProxyStore::~DataReductionProxyStore() {
|
| +}
|
| +
|
| +void DataReductionProxyStore::InitializeOnDBThread() {
|
| +}
|
| +
|
| +DataReductionProxyStore::Status DataReductionProxyStore::Get(
|
| + const std::string& key,
|
| + std::string* value) {
|
| + return DataReductionProxyStore::Status::NOT_FOUND;
|
| +}
|
| +
|
| +DataReductionProxyStore::Status DataReductionProxyStore::Put(
|
| + const std::map<std::string, std::string>& map) {
|
| + return DataReductionProxyStore::Status::OK;
|
| +}
|
| +
|
| +} // namespace data_reduction_proxy
|
|
|