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

Unified Diff: webkit/plugins/ppapi/mock_plugin_delegate.cc

Issue 13726024: Refactor FileSystem (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: NON_EXPORTED_BASE Created 7 years, 8 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
« no previous file with comments | « webkit/plugins/ppapi/mock_plugin_delegate.h ('k') | webkit/plugins/ppapi/plugin_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/ppapi/mock_plugin_delegate.cc
diff --git a/webkit/plugins/ppapi/mock_plugin_delegate.cc b/webkit/plugins/ppapi/mock_plugin_delegate.cc
index 07c963e61f6004db1ed88a77269e4d78b9017ca3..6117b9f9305ef79056f1a3258569094c2284f018 100644
--- a/webkit/plugins/ppapi/mock_plugin_delegate.cc
+++ b/webkit/plugins/ppapi/mock_plugin_delegate.cc
@@ -155,6 +155,24 @@ bool MockPluginDelegate::AsyncOpenFileSystemURL(
return false;
}
+bool MockPluginDelegate::IsFileSystemOpened(
+ PP_Instance instance,
+ PP_Resource resource) const {
+ return false;
+}
+
+PP_FileSystemType MockPluginDelegate::GetFileSystemType(
+ PP_Instance instance,
+ PP_Resource resource) const {
+ return PP_FILESYSTEMTYPE_INVALID;
+}
+
+GURL MockPluginDelegate::GetFileSystemRootUrl(
+ PP_Instance instance,
+ PP_Resource resource) const {
+ return GURL();
+}
+
bool MockPluginDelegate::OpenFileSystem(
const GURL& origin_url,
fileapi::FileSystemType type,
@@ -390,5 +408,9 @@ IPC::PlatformFileForTransit MockPluginDelegate::ShareHandleWithRemote(
return IPC::InvalidPlatformFileForTransit();
}
+bool MockPluginDelegate::IsRunningInProcess(PP_Instance instance) const {
+ return false;
+}
+
} // namespace ppapi
} // namespace webkit
« no previous file with comments | « webkit/plugins/ppapi/mock_plugin_delegate.h ('k') | webkit/plugins/ppapi/plugin_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698