Index: chrome/browser/android/offline_pages/downloads/resource_throttle.h |
diff --git a/chrome/browser/android/offline_pages/downloads/resource_throttle.h b/chrome/browser/android/offline_pages/downloads/resource_throttle.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b33e25294c741c35031ccfcb8e69b1237ac39e23 |
--- /dev/null |
+++ b/chrome/browser/android/offline_pages/downloads/resource_throttle.h |
@@ -0,0 +1,35 @@ |
+// Copyright 2016 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 CHROME_BROWSER_ANDROID_OFFLINE_PAGES_DOWNLOADS_RESOURCE_THROTTLE_H_ |
+#define CHROME_BROWSER_ANDROID_OFFLINE_PAGES_DOWNLOADS_RESOURCE_THROTTLE_H_ |
+ |
+#include "content/public/browser/resource_throttle.h" |
+#include "net/url_request/url_request.h" |
+ |
+namespace offline_pages { |
+namespace downloads { |
+ |
+// ResourceThrottle is used to determine if a download has text/html mime type |
+// and should be handled as a full page download rather than a single .html |
+// file download. |
Pete Williamson
2016/12/19 21:48:58
It might be nice to beef up this comment a bit to
Dmitry Titov
2016/12/19 22:39:32
Done.
|
+class ResourceThrottle : public content::ResourceThrottle { |
+ public: |
+ explicit ResourceThrottle(const net::URLRequest* request); |
+ ~ResourceThrottle() override; |
+ |
+ // content::ResourceThrottle implementation: |
+ void WillProcessResponse(bool* defer) override; |
+ const char* GetNameForLogging() const override; |
+ |
+ private: |
+ const net::URLRequest* request_; |
+ |
+ DISALLOW_COPY_AND_ASSIGN(ResourceThrottle); |
+}; |
+ |
+} // namespace downloads |
+} // namespace offline_pages |
+ |
+#endif // CHROME_BROWSER_ANDROID_OFFLINE_PAGES_DOWNLOADS_RESOURCE_THROTTLE_H_ |