Changeset 117766 in webkit
- Timestamp:
- May 21, 2012, 4:25:19 AM (14 years ago)
- Location:
- trunk/Source
- Files:
-
- 7 edited
-
Platform/chromium/public/WebFileUtilities.h (modified) (1 diff)
-
WebCore/ChangeLog (modified) (1 diff)
-
WebCore/platform/FileSystem.h (modified) (1 diff)
-
WebCore/platform/chromium/FileSystemChromium.cpp (modified) (1 diff)
-
WebCore/platform/chromium/PlatformSupport.h (modified) (1 diff)
-
WebKit/chromium/ChangeLog (modified) (1 diff)
-
WebKit/chromium/src/PlatformSupport.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/Platform/chromium/public/WebFileUtilities.h
r117520 r117766 49 49 typedef int FileHandle; 50 50 #endif 51 virtual void revealFolderInOS(const WebString& path) { }52 51 virtual bool fileExists(const WebString& path) { return false; } 53 52 virtual bool deleteFile(const WebString& path) { return false; } -
trunk/Source/WebCore/ChangeLog
r117755 r117766 1 2012-05-20 Kinuko Yasuda <kinuko@chromium.org> 2 3 Cleanup: Remove WebCore::revealFolderInOS() which is no longer used anywhere 4 https://bugs.webkit.org/show_bug.cgi?id=86993 5 6 Reviewed by Adam Barth. 7 8 No new tests as this must be just removing dead code. 9 10 * platform/FileSystem.h: 11 * platform/chromium/FileSystemChromium.cpp: 12 * platform/chromium/PlatformSupport.h: 13 (PlatformSupport): 14 1 15 2012-05-21 Alexander Pavlov <apavlov@chromium.org> 2 16 -
trunk/Source/WebCore/platform/FileSystem.h
r110360 r117766 152 152 #endif 153 153 154 void revealFolderInOS(const String&);155 154 bool fileExists(const String&); 156 155 bool deleteFile(const String&); -
trunk/Source/WebCore/platform/chromium/FileSystemChromium.cpp
r95901 r117766 56 56 { 57 57 return PlatformSupport::getFileModificationTime(path, result); 58 }59 60 void revealFolderInOS(const String& path)61 {62 PlatformSupport::revealFolderInOS(path);63 58 } 64 59 -
trunk/Source/WebCore/platform/chromium/PlatformSupport.h
r116840 r117766 123 123 124 124 // File --------------------------------------------------------------- 125 static void revealFolderInOS(const String&);126 125 static bool fileExists(const String&); 127 126 static bool deleteFile(const String&); -
trunk/Source/WebKit/chromium/ChangeLog
r117745 r117766 1 2012-05-20 Kinuko Yasuda <kinuko@chromium.org> 2 3 Cleanup: Remove WebCore::revealFolderInOS() which is no longer used anywhere 4 https://bugs.webkit.org/show_bug.cgi?id=86993 5 6 Reviewed by Adam Barth. 7 8 * public/WebFileUtilities.h: 9 (WebFileUtilities): 10 * src/PlatformSupport.cpp: 11 1 12 2012-05-21 Adam Barth <abarth@webkit.org> 2 13 -
trunk/Source/WebKit/chromium/src/PlatformSupport.cpp
r117538 r117766 318 318 { 319 319 return WebKit::Platform::current()->fileUtilities()->getFileSize(path, result); 320 }321 322 void PlatformSupport::revealFolderInOS(const String& path)323 {324 WebKit::Platform::current()->fileUtilities()->revealFolderInOS(path);325 320 } 326 321
Note:
See TracChangeset
for help on using the changeset viewer.