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, |