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

Unified Diff: ppapi/proxy/ppapi_proxy_test.cc

Issue 10387195: Open pepper files directly in browser. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 7 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: ppapi/proxy/ppapi_proxy_test.cc
===================================================================
--- ppapi/proxy/ppapi_proxy_test.cc (revision 138610)
+++ ppapi/proxy/ppapi_proxy_test.cc (working copy)
@@ -229,6 +229,43 @@
return false;
}
+int32_t
+PluginProxyTestHarness::PluginDelegateMock::SendOpenFileRequestToBrowser(
+ const char* path, int32_t mode, PP_FileHandle* file) {
+ return 0;
+}
+
+int32_t
+PluginProxyTestHarness::PluginDelegateMock::SendRenameFileRequestToBrowser(
+ const char* from_path, const char* to_path) {
+ return 0;
+}
+
+int32_t
+PluginProxyTestHarness::PluginDelegateMock::SendDeleteFileOrDirRequestToBrowser(
+ const char* path, PP_Bool recursive) {
+ return 0;
+}
+
+int32_t
+PluginProxyTestHarness::PluginDelegateMock::SendCreateDirRequestToBrowser(
+ const char* path) {
+ return 0;
+}
+
+int32_t
+PluginProxyTestHarness::PluginDelegateMock::SendQueryFileRequestToBrowser(
+ const char* path, PP_FileInfo* info) {
+ return 0;
+}
+
+int32_t
+PluginProxyTestHarness::PluginDelegateMock::SendGetDirContentsRequestToBrowser(
+ const char* path, PP_DirContents_Dev** contents) {
+ return 0;
+}
+
+
void PluginProxyTestHarness::PluginDelegateMock::PreCacheFont(
const void* logfontw) {
}

Powered by Google App Engine
This is Rietveld 408576698