Index: webkit/plugins/ppapi/ppb_file_ref_impl.cc |
diff --git a/webkit/plugins/ppapi/ppb_file_ref_impl.cc b/webkit/plugins/ppapi/ppb_file_ref_impl.cc |
index 3b39ce642c1a7f008d96c3b938e3ce969109d990..bc0de22538215e4e36c2cac3f48ce079fc59fb20 100644 |
--- a/webkit/plugins/ppapi/ppb_file_ref_impl.cc |
+++ b/webkit/plugins/ppapi/ppb_file_ref_impl.cc |
@@ -80,14 +80,14 @@ std::string GetNameForVirtualFilePath(const std::string& path) { |
PPB_FileRef_Impl::PPB_FileRef_Impl(const PPB_FileRef_CreateInfo& info, |
PPB_FileSystem_Impl* file_system) |
- : FileRefImpl(FileRefImpl::InitAsImpl(), info), |
+ : PPB_FileRef_Shared(PPB_FileRef_Shared::InitAsImpl(), info), |
file_system_(file_system), |
external_file_system_path_() { |
} |
PPB_FileRef_Impl::PPB_FileRef_Impl(const PPB_FileRef_CreateInfo& info, |
const FilePath& external_file_path) |
- : FileRefImpl(FileRefImpl::InitAsImpl(), info), |
+ : PPB_FileRef_Shared(PPB_FileRef_Shared::InitAsImpl(), info), |
file_system_(), |
external_file_system_path_(external_file_path) { |
} |