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

Unified Diff: native_client_sdk/src/libraries/nacl_mounts/kernel_proxy.cc

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/kernel_proxy.cc
diff --git a/native_client_sdk/src/libraries/nacl_mounts/kernel_proxy.cc b/native_client_sdk/src/libraries/nacl_mounts/kernel_proxy.cc
index a693598f1b9fa195710baab6e1e73ce76cc57a72..745e3752efff481d783ed4c9f4370f43e1980e0f 100644
--- a/native_client_sdk/src/libraries/nacl_mounts/kernel_proxy.cc
+++ b/native_client_sdk/src/libraries/nacl_mounts/kernel_proxy.cc
@@ -14,6 +14,7 @@
#include "nacl_mounts/mount.h"
#include "nacl_mounts/mount_dev.h"
#include "nacl_mounts/mount_html5fs.h"
+#include "nacl_mounts/mount_http.h"
#include "nacl_mounts/mount_mem.h"
#include "nacl_mounts/mount_node.h"
#include "nacl_mounts/osstat.h"
@@ -48,6 +49,7 @@ void KernelProxy::Init(PepperInterface* ppapi) {
factories_["memfs"] = MountMem::Create<MountMem>;
factories_["dev"] = MountDev::Create<MountDev>;
factories_["html5fs"] = MountHtml5Fs::Create<MountHtml5Fs>;
+ factories_["httpfs"] = MountHttp::Create<MountHttp>;
// Create memory mount at root
StringMap_t smap;
« no previous file with comments | « native_client_sdk/src/libraries/nacl_mounts/Makefile ('k') | native_client_sdk/src/libraries/nacl_mounts/library.dsc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698