Index: ppapi/shared_impl/file_path.cc |
diff --git a/ppapi/shared_impl/file_path.cc b/ppapi/shared_impl/file_path.cc |
index 1208b0803e2fad335495057cb4dcf7ab319dbdf5..d46277758d460d4c686a22910203df9119b01cde 100644 |
--- a/ppapi/shared_impl/file_path.cc |
+++ b/ppapi/shared_impl/file_path.cc |
@@ -35,17 +35,4 @@ PepperFilePath::PepperFilePath(Domain domain, const FilePath& path) |
// TODO(viettrungluu): Should we DCHECK() some things here? |
} |
-// static |
-PepperFilePath PepperFilePath::MakeAbsolute(const FilePath& path) { |
- return PepperFilePath(DOMAIN_ABSOLUTE, path); |
-} |
- |
-// static |
-PepperFilePath PepperFilePath::MakeModuleLocal(const std::string& name, |
- const char* utf8_path) { |
- FilePath full_path = GetFilePathFromUTF8(name).Append( |
- GetFilePathFromUTF8(utf8_path)); |
- return PepperFilePath(DOMAIN_MODULE_LOCAL, full_path); |
-} |
- |
} // namespace ppapi |