| Index: components/data_reduction_proxy/content/browser/content_lofi_decider.cc
|
| diff --git a/components/data_reduction_proxy/content/browser/content_lofi_decider.cc b/components/data_reduction_proxy/content/browser/content_lofi_decider.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6a83c75d90e1d177730e5d7c59c59656c22aab9c
|
| --- /dev/null
|
| +++ b/components/data_reduction_proxy/content/browser/content_lofi_decider.cc
|
| @@ -0,0 +1,18 @@
|
| +// 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/content/browser/content_lofi_decider.h"
|
| +
|
| +namespace data_reduction_proxy {
|
| +
|
| +ContentLoFiDecider::ContentLoFiDecider() {}
|
| +
|
| +ContentLoFiDecider::~ContentLoFiDecider() {}
|
| +
|
| +bool ContentLoFiDecider::IsUsingLoFiMode(const net::URLRequest& request) const {
|
| + // TODO: will be check of ResourceRequestInfo::IsUsingLoFi
|
| + return false;
|
| +}
|
| +
|
| +} // namespace data_reduction_proxy
|
|
|