summaryrefslogtreecommitdiffstats
path: root/webkit/glue/plugins/pepper_url_response_info.h
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/glue/plugins/pepper_url_response_info.h')
-rw-r--r--webkit/glue/plugins/pepper_url_response_info.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/webkit/glue/plugins/pepper_url_response_info.h b/webkit/glue/plugins/pepper_url_response_info.h
index d8e1321..ff3a832 100644
--- a/webkit/glue/plugins/pepper_url_response_info.h
+++ b/webkit/glue/plugins/pepper_url_response_info.h
@@ -7,7 +7,7 @@
#include <string>
-#include "third_party/ppapi/c/dev/ppb_url_response_info_dev.h"
+#include "ppapi/c/dev/ppb_url_response_info_dev.h"
#include "webkit/glue/plugins/pepper_resource.h"
namespace WebKit {
@@ -35,10 +35,14 @@ class URLResponseInfo : public Resource {
FileRef* body() { return body_; }
+ std::string redirect_url() { return redirect_url_; }
+
private:
std::string url_;
std::string headers_;
int32_t status_code_;
+ std::string status_text_;
+ std::string redirect_url_;
scoped_refptr<FileRef> body_;
};