| 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) {
|
| }
|
|
|