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

Unified Diff: ppapi/api/ppb_url_response_info.idl

Issue 8538038: Add values to all (non-dev, non-private) Pepper .idl enumerations. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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
« no previous file with comments | « ppapi/api/ppb_url_request_info.idl ('k') | ppapi/c/pp_file_info.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/api/ppb_url_response_info.idl
diff --git a/ppapi/api/ppb_url_response_info.idl b/ppapi/api/ppb_url_response_info.idl
index 53b00a2ae21328c071a9ee34c4cbec9d8933c647..a89672030559579748f8f79260726b4838a36bec 100644
--- a/ppapi/api/ppb_url_response_info.idl
+++ b/ppapi/api/ppb_url_response_info.idl
@@ -26,7 +26,7 @@ enum PP_URLResponseProperty {
* <a href="http://www.w3.org/TR/html4/struct/links.html#h-12.4.1">
* HTML Resolving Relative URIs</a> documentation for further information.
*/
- PP_URLRESPONSEPROPERTY_URL,
+ PP_URLRESPONSEPROPERTY_URL = 0,
/**
* This corresponds to a string (PP_VARTYPE_STRING); the absolute URL returned
@@ -35,7 +35,7 @@ enum PP_URLResponseProperty {
* <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.3">
* HTTP Status Codes - Redirection</a> documentation for further information.
*/
- PP_URLRESPONSEPROPERTY_REDIRECTURL,
+ PP_URLRESPONSEPROPERTY_REDIRECTURL = 1,
/**
* This corresponds to a string (PP_VARTYPE_STRING); the HTTP method to be
@@ -44,7 +44,7 @@ enum PP_URLResponseProperty {
* <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.3">
* HTTP Status Codes - Redirection</a> documentation for further information.
*/
- PP_URLRESPONSEPROPERTY_REDIRECTMETHOD,
+ PP_URLRESPONSEPROPERTY_REDIRECTMETHOD = 2,
/**
* This corresponds to an int32 (PP_VARETYPE_INT32); the status code from the
@@ -53,7 +53,7 @@ enum PP_URLResponseProperty {
* HTTP Status Code and Reason Phrase</a> documentation for further
* information.
*/
- PP_URLRESPONSEPROPERTY_STATUSCODE,
+ PP_URLRESPONSEPROPERTY_STATUSCODE = 3,
/**
* This corresponds to a string (PP_VARTYPE_STRING); the status line
@@ -61,7 +61,7 @@ enum PP_URLResponseProperty {
* <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec6.html#sec6.1">
* HTTP Response Status Line</a> documentation for further information.
*/
- PP_URLRESPONSEPROPERTY_STATUSLINE,
+ PP_URLRESPONSEPROPERTY_STATUSLINE = 4,
/**
* This corresponds to a string(PP_VARTYPE_STRING), a \n-delimited list of
@@ -70,7 +70,7 @@ enum PP_URLResponseProperty {
* <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14">
* HTTP Header Field Definitions</a> documentation for further information.
*/
- PP_URLRESPONSEPROPERTY_HEADERS
+ PP_URLRESPONSEPROPERTY_HEADERS = 5
};
« no previous file with comments | « ppapi/api/ppb_url_request_info.idl ('k') | ppapi/c/pp_file_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698