| Index: native_client_sdk/src/libraries/nacl_io/mount_http.h
|
| diff --git a/native_client_sdk/src/libraries/nacl_io/mount_http.h b/native_client_sdk/src/libraries/nacl_io/mount_http.h
|
| index 21d688e64cb81f205319df5d2d1b8383f32d1d67..4946d9f413fa9e62278eef742f2987aefc1c5981 100644
|
| --- a/native_client_sdk/src/libraries/nacl_io/mount_http.h
|
| +++ b/native_client_sdk/src/libraries/nacl_io/mount_http.h
|
| @@ -11,12 +11,8 @@
|
| #include "nacl_io/pepper_interface.h"
|
| #include "nacl_io/typed_mount_factory.h"
|
|
|
| -class MountHttpMock;
|
| -
|
| namespace nacl_io {
|
|
|
| -class MountNode;
|
| -
|
| std::string NormalizeHeaderKey(const std::string& s);
|
|
|
| class MountHttp : public Mount {
|
| @@ -44,6 +40,8 @@ class MountHttp : public Mount {
|
| Error LoadManifest(const std::string& path, char** out_manifest);
|
| Error ParseManifest(const char *text);
|
|
|
| + NodeMap_t* GetNodeCacheForTesting() { return &node_cache_; }
|
| +
|
| private:
|
| // Gets the URL to fetch for |path|.
|
| // |path| is relative to the mount point for the HTTP filesystem.
|
| @@ -59,7 +57,6 @@ class MountHttp : public Mount {
|
|
|
| friend class TypedMountFactory<MountHttp>;
|
| friend class MountNodeHttp;
|
| - friend class ::MountHttpMock;
|
| };
|
|
|
| } // namespace nacl_io
|
|
|