Chromium Code Reviews| Index: components/data_reduction_proxy/content/browser/content_lofi_decider.h |
| diff --git a/components/data_reduction_proxy/content/browser/content_lofi_decider.h b/components/data_reduction_proxy/content/browser/content_lofi_decider.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..d61d8890572f71769a121e56293218810fd4d34e |
| --- /dev/null |
| +++ b/components/data_reduction_proxy/content/browser/content_lofi_decider.h |
| @@ -0,0 +1,35 @@ |
| +// 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. |
| + |
| +#ifndef COMPONENTS_DATA_REDUCTION_PROXY_CONTENT_BROWSER_CONTENT_LOFI_DECIDER_H_ |
| +#define COMPONENTS_DATA_REDUCTION_PROXY_CONTENT_BROWSER_CONTENT_LOFI_DECIDER_H_ |
| + |
| +#include "components/data_reduction_proxy/core/common/lofi_decider.h" |
| +#include "base/macros.h" |
| + |
| +namespace net { |
| +class URLRequest; |
| +} |
| + |
| +namespace data_reduction_proxy { |
| + |
| +// Class responsible for deciding whether a request should be requested with low |
| +// fidelity (Lo-Fi) or not. Lives in content because the Lo-Fi mode state is |
|
bengr
2015/10/14 22:34:10
Instead of "Lives in content because the Lo-Fi mod
megjablon
2015/10/15 03:44:06
Done.
|
| +// stored in the request's content::ResourceRequestInfo which must be fetched |
|
bengr
2015/10/14 22:34:10
nit: add a comma before which
megjablon
2015/10/15 03:44:06
Done.
|
| +// using content::ResourceRequestInfo::ForRequest. Lives in |
|
bengr
2015/10/14 22:34:10
Is it owned by DRPIOData? If so, say "Owned by" in
megjablon
2015/10/15 03:44:06
Done.
|
| +// DataReductionProxyIOData and should be called on the IO thread. |
| +class ContentLoFiDecider : public LoFiDecider { |
| + public: |
| + ContentLoFiDecider(); |
| + ~ContentLoFiDecider() override; |
| + |
| + bool IsUsingLoFiMode(const net::URLRequest& request) const override; |
| + |
| + private: |
| + DISALLOW_COPY_AND_ASSIGN(ContentLoFiDecider); |
| +}; |
| + |
| +} // namespace data_reduction_proxy |
| + |
| +#endif // COMPONENTS_DATA_REDUCTION_PROXY_CONTENT_BROWSER_CONTENT_LOFI_DECIDER_H_ |