Chromium Code Reviews| Index: native_client_sdk/src/tests/nacl_io_test/fake_ppapi/fake_pepper_interface_url_loader.h |
| diff --git a/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/fake_pepper_interface_url_loader.h b/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/fake_pepper_interface_url_loader.h |
| index a554eae47123432873bf843dfa1284f5491a09cf..0232403df1c9a000f262ccf8b9403ea799c4a360 100644 |
| --- a/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/fake_pepper_interface_url_loader.h |
| +++ b/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/fake_pepper_interface_url_loader.h |
| @@ -104,9 +104,10 @@ class FakeURLLoaderInterface : public nacl_io::URLLoaderInterface { |
| virtual void Close(PP_Resource loader); |
| - private: |
| + protected: |
| FakeCoreInterface* core_interface_; // Weak reference. |
| + private: |
| DISALLOW_COPY_AND_ASSIGN(FakeURLLoaderInterface); |
| }; |
| @@ -139,10 +140,11 @@ class FakeURLResponseInfoInterface : public nacl_io::URLResponseInfoInterface { |
| PP_URLResponseProperty property); |
| virtual PP_Resource GetBodyAsFileRef(PP_Resource response); |
| - private: |
| + protected: |
| FakeCoreInterface* core_interface_; // Weak reference. |
| FakeVarInterface* var_interface_; // Weak reference. |
|
chanpatorikku
2016/12/02 13:23:33
FakeVarInterface can be private, not protected. N
binji
2016/12/02 22:30:39
This is fine.
chanpatorikku
2016/12/05 15:05:44
Acknowledged.
|
| + private: |
| DISALLOW_COPY_AND_ASSIGN(FakeURLResponseInfoInterface); |
| }; |