Index: Source/core/platform/chromium/FileSystemChromium.cpp |
diff --git a/Source/core/platform/chromium/FileSystemChromium.cpp b/Source/core/platform/chromium/FileSystemChromium.cpp |
index 2e2ff68f883123c9a1f98251c32b88707136a8a3..e3d1853cef82cf4dfab98c41fb305357e0577a57 100644 |
--- a/Source/core/platform/chromium/FileSystemChromium.cpp |
+++ b/Source/core/platform/chromium/FileSystemChromium.cpp |
@@ -75,19 +75,4 @@ String directoryName(const String& path) |
return WebKit::Platform::current()->fileUtilities()->directoryName(path); |
} |
-PlatformFileHandle openFile(const String& path, FileOpenMode mode) |
-{ |
- return WebKit::Platform::current()->fileUtilities()->openFile(path, mode); |
-} |
- |
-void closeFile(PlatformFileHandle& handle) |
-{ |
- WebKit::Platform::current()->fileUtilities()->closeFile(handle); |
-} |
- |
-int readFromFile(PlatformFileHandle handle, char* data, int length) |
-{ |
- return WebKit::Platform::current()->fileUtilities()->readFromFile(handle, data, length); |
-} |
- |
} // namespace WebCore |