OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "components/data_reduction_proxy/content/browser/content_lofi_decider.h " | |
6 | |
7 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_param s.h" | |
bengr
2015/10/12 21:06:41
None of these includes is needed.
megjablon
2015/10/12 23:08:04
Done.
| |
8 #include "content/public/browser/resource_request_info.h" | |
9 #include "net/url_request/url_request.h" | |
10 | |
11 namespace data_reduction_proxy { | |
12 | |
13 ContentLoFiDecider::ContentLoFiDecider() {} | |
14 | |
15 ContentLoFiDecider::~ContentLoFiDecider() {} | |
16 | |
17 bool ContentLoFiDecider::IsUsingLoFiMode(const net::URLRequest& request) const { | |
18 // TODO: will be check of ResourceRequestInfo::IsUsingLoFi | |
19 return false; | |
20 } | |
21 | |
22 } // namespace data_reduction_roxy | |
bengr
2015/10/12 21:06:41
roxy -> proxy
megjablon
2015/10/12 23:08:04
Done.
| |
OLD | NEW |