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

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: 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
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..48754d430c5cdba655faf40726a340eb7778a866 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;
+}
+
+std::string MockPluginDelegate::GetFileSystemRootUrl(
+ PP_Instance instance,
+ PP_Resource resource) const {
+ return "";
yzshen1 2013/04/08 21:05:16 nit: it is preferred to use std::string().
victorhsieh 2013/04/08 23:44:38 Done.
+}
+
bool MockPluginDelegate::OpenFileSystem(
const GURL& origin_url,
fileapi::FileSystemType type,

Powered by Google App Engine
This is Rietveld 408576698