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

Unified Diff: native_client_sdk/src/libraries/nacl_mounts/nacl_mounts.h

Issue 11887021: [NaCl SDK] Add HTTP mount. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 7 years, 11 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: native_client_sdk/src/libraries/nacl_mounts/nacl_mounts.h
diff --git a/native_client_sdk/src/libraries/nacl_mounts/nacl_mounts.h b/native_client_sdk/src/libraries/nacl_mounts/nacl_mounts.h
index 6a09c42947819714b3e2707378b8cd55d761ecaa..b70957fdb02ab56c380a86b1091b3f5f02492389 100644
--- a/native_client_sdk/src/libraries/nacl_mounts/nacl_mounts.h
+++ b/native_client_sdk/src/libraries/nacl_mounts/nacl_mounts.h
@@ -78,6 +78,22 @@ void nacl_mounts_init_ppapi(PP_Instance instance,
* "expected_size": The expected file-system size. Note that this does
* not request quota -- you must do that from JavaScript.
*
+ * "httpfs": A filesystem that reads from a URL via HTTP.
+ * source: The root URL to read from. All paths read from this filesystem
+ * will be appended to this root.
+ * e.g. If source == "http://example.com/path", reading from
+ * "foo/bar.txt" will attempt to read from the URL
+ * "http://example.com/path/foo/bar.txt".
+ * data: A string of parameters:
+ * "allow_cross_origin_request": If "true", then reads from this
+ * filesystem will follow the CORS standard for cross-origin requests.
+ * See http://www.w3.org/TR/access-control.
+ * "allow_credentials": If "true", credentials are sent with cross-origin
+ * requests. If false, no credentials are sent with the request and
+ * cookies are ignored in the response.
+ * All other key/value pairs are assumed to be headers to use with
+ * HTTP requests.
+ *
*
* @param[in] source Depends on the filesystem type. See above.
* @param[in] target The absolute path to mount the filesystem.

Powered by Google App Engine
This is Rietveld 408576698