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

Unified Diff: android_webview/native/intercepted_request_data_impl.h

Issue 284123004: [android_webview] Add more params to request intercepting. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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: android_webview/native/intercepted_request_data_impl.h
diff --git a/android_webview/native/intercepted_request_data_impl.h b/android_webview/native/intercepted_request_data_impl.h
index 598b31932105fb921a770842169e58103da9cbf8..d4bdf59abaf68beb57a242c065b145c17393f963 100644
--- a/android_webview/native/intercepted_request_data_impl.h
+++ b/android_webview/native/intercepted_request_data_impl.h
@@ -10,6 +10,10 @@
#include "base/compiler_specific.h"
#include "base/memory/scoped_ptr.h"
+namespace net {
+class HttpResponseHeaders;
+}
+
namespace android_webview {
class InputStream;
@@ -24,6 +28,12 @@ class InterceptedRequestDataImpl : public InterceptedRequestData {
virtual scoped_ptr<InputStream> GetInputStream(JNIEnv* env) const OVERRIDE;
virtual bool GetMimeType(JNIEnv* env, std::string* mime_type) const OVERRIDE;
virtual bool GetCharset(JNIEnv* env, std::string* charset) const OVERRIDE;
+ virtual bool GetStatusInfo(JNIEnv* env,
+ int* status_code,
+ std::string* reason_phrase) const OVERRIDE;
+ virtual bool GetHeaders(
+ JNIEnv* env,
+ net::HttpResponseHeaders* headers) const OVERRIDE;
private:
base::android::ScopedJavaGlobalRef<jobject> java_object_;

Powered by Google App Engine
This is Rietveld 408576698