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

Unified Diff: chrome/browser/android/offline_pages/downloads/resource_throttle.h

Issue 2528483003: [Android Downloads] Long-press menu item "Download Link" should delegate job to OfflinePages backen… (Closed)
Patch Set: Added a simple test and changes per asanka's comments Created 4 years 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: 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_

Powered by Google App Engine
This is Rietveld 408576698