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

Unified Diff: native_client_sdk/src/tests/nacl_io_test/fake_ppapi/fake_pepper_interface_url_loader.h

Issue 2538163003: [NaCl SDK] Implement FakePepperInterfaceGoogleDriveFs (Closed)
Patch Set: Created 4 years 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/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.
+ private:
DISALLOW_COPY_AND_ASSIGN(FakeURLResponseInfoInterface);
};

Powered by Google App Engine
This is Rietveld 408576698