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

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

Issue 14188019: CRX FileSystem Pepper private API (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/resource_creation_impl.cc
diff --git a/webkit/plugins/ppapi/resource_creation_impl.cc b/webkit/plugins/ppapi/resource_creation_impl.cc
index b6af9761ceb278fcef466dcdcd0340d6a9f2208c..40421a3663be6c727466b33b0a6c0507030eb292 100644
--- a/webkit/plugins/ppapi/resource_creation_impl.cc
+++ b/webkit/plugins/ppapi/resource_creation_impl.cc
@@ -81,6 +81,12 @@ PP_Resource ResourceCreationImpl::CreateDirectoryReader(
return 0; // Not supported in-process.
}
+PP_Resource ResourceCreationImpl::CreateExtCrxFileSystemPrivate(
yzshen1 2013/05/06 17:34:57 You don't need this method.
victorhsieh 2013/05/06 18:32:02 Done.
+ PP_Instance instance) {
+ NOTIMPLEMENTED(); // no need to support in-process
+ return 0;
+}
+
PP_Resource ResourceCreationImpl::CreateFileRef(
PP_Instance instance,
PP_Resource file_system,
@@ -160,6 +166,12 @@ PP_Resource ResourceCreationImpl::CreateIMEInputEvent(
segment_offsets, target_segment, selection_start, selection_end);
}
+PP_Resource ResourceCreationImpl::CreateIsolatedFileSystem(PP_Instance instance,
+ const char* fsid) {
+ NOTIMPLEMENTED(); // no need to support in-process
+ return 0;
+}
+
PP_Resource ResourceCreationImpl::CreateKeyboardInputEvent(
PP_Instance instance,
PP_InputEvent_Type type,
« ppapi/thunk/ppb_file_ref_thunk.cc ('K') | « webkit/plugins/ppapi/resource_creation_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698