Index: components/data_reduction_proxy/content/browser/content_data_reduction_proxy_lofi_helper.cc |
diff --git a/components/data_reduction_proxy/content/browser/content_data_reduction_proxy_lofi_helper.cc b/components/data_reduction_proxy/content/browser/content_data_reduction_proxy_lofi_helper.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..6ab42945d3aa4ddc1e7fd2701cbea699c93456f9 |
--- /dev/null |
+++ b/components/data_reduction_proxy/content/browser/content_data_reduction_proxy_lofi_helper.cc |
@@ -0,0 +1,22 @@ |
+// 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_data_reduction_proxy_lofi_helper.h" |
+ |
+#include "content/public/browser/resource_request_info.h" |
+#include "net/url_request/url_request.h" |
+ |
+namespace data_reduction_proxy { |
+ |
+ContentDataReductionProxyLoFiHelper::ContentDataReductionProxyLoFiHelper() {} |
+ |
+ContentDataReductionProxyLoFiHelper::~ContentDataReductionProxyLoFiHelper() {} |
+ |
+bool ContentDataReductionProxyLoFiHelper::IsLoFi( |
+ const net::URLRequest* request) const { |
+ // TODO: return IsLoFi from ResourceRequestInfo. |
+ return false; |
+} |
+ |
+} // namespace data_reduction_roxy |