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

Unified Diff: content/public/browser/stream_handle.h

Issue 185663002: Pass http response headers to the streamsPrivate API callback (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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: content/public/browser/stream_handle.h
diff --git a/content/public/browser/stream_handle.h b/content/public/browser/stream_handle.h
index 5965a40350e3d1285fd037db9ffa46e6039e0829..877c51d4818a37e881b6238552fb9f480a8f07e4 100644
--- a/content/public/browser/stream_handle.h
+++ b/content/public/browser/stream_handle.h
@@ -23,6 +23,9 @@ class CONTENT_EXPORT StreamHandle {
// Get the MIME type associated with this Stream.
virtual const std::string& GetMimeType() = 0;
+
+ // Get the HTTP response headers associated with this Stream.
+ virtual const std::string& GetResponseHeaders() = 0;
};
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698