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

Unified Diff: webkit/plugins/ppapi/ppb_url_request_info_impl.h

Issue 6652014: Pepper: Add a property to URLRequestInfo to skip header validation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 9 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: webkit/plugins/ppapi/ppb_url_request_info_impl.h
diff --git a/webkit/plugins/ppapi/ppb_url_request_info_impl.h b/webkit/plugins/ppapi/ppb_url_request_info_impl.h
index 64c27fe774b12f4e627b37e7278518fbde450ad8..de6ecc2a697e16bb16c6b9c9359179d0374b9a30 100644
--- a/webkit/plugins/ppapi/ppb_url_request_info_impl.h
+++ b/webkit/plugins/ppapi/ppb_url_request_info_impl.h
@@ -50,6 +50,7 @@ class PPB_URLRequestInfo_Impl : public Resource {
bool record_download_progress() const { return record_download_progress_; }
bool record_upload_progress() const { return record_upload_progress_; }
+ bool universal_access() const { return universal_access_; }
private:
struct BodyItem;
@@ -64,6 +65,7 @@ class PPB_URLRequestInfo_Impl : public Resource {
bool follow_redirects_;
bool record_download_progress_;
bool record_upload_progress_;
+ bool universal_access_;
DISALLOW_COPY_AND_ASSIGN(PPB_URLRequestInfo_Impl);
};

Powered by Google App Engine
This is Rietveld 408576698