Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(273)

Unified Diff: components/data_reduction_proxy/content/browser/content_lofi_decider.h

Issue 1363673004: [DRP] Consistently use LoFi for an entire page (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: final comments Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..222fedde8a7d04e129adb9702d2917135c702313
--- /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. Relies on the Lo-Fi mode state stored in the
+// request's content::ResourceRequestInfo, which must be fetched using
+// content::ResourceRequestInfo::ForRequest. Owned by 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_

Powered by Google App Engine
This is Rietveld 408576698