| Index: native_client_sdk/src/libraries/nacl_io/mount_http.cc
|
| diff --git a/native_client_sdk/src/libraries/nacl_io/mount_http.cc b/native_client_sdk/src/libraries/nacl_io/mount_http.cc
|
| index 9638746b031451d107e595ad3ccdbb938ed58879..3a4877b037d8e2ab3f005d4f8a96050fc3048319 100644
|
| --- a/native_client_sdk/src/libraries/nacl_io/mount_http.cc
|
| +++ b/native_client_sdk/src/libraries/nacl_io/mount_http.cc
|
| @@ -23,6 +23,8 @@
|
| #include "nacl_io/osinttypes.h"
|
| #include "nacl_io/osunistd.h"
|
|
|
| +namespace nacl_io {
|
| +
|
| namespace {
|
|
|
| typedef std::vector<char*> StringList_t;
|
| @@ -399,3 +401,5 @@ std::string MountHttp::MakeUrl(const Path& path) {
|
| return url_root_ +
|
| (path.IsAbsolute() ? path.Range(1, path.Size()) : path.Join());
|
| }
|
| +
|
| +} // namespace nacl_io
|
|
|