Changeset 118894 in webkit
- Timestamp:
- May 29, 2012, 10:08:36 PM (14 years ago)
- Location:
- trunk/Source
- Files:
-
- 4 edited
-
Platform/ChangeLog (modified) (1 diff)
-
Platform/chromium/public/Platform.h (modified) (1 diff)
-
WebCore/ChangeLog (modified) (1 diff)
-
WebCore/platform/chromium/FileSystemChromium.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/Platform/ChangeLog
r118873 r118894 1 2012-05-29 Mark Pilgrim <pilgrim@chromium.org> 2 3 [Chromium] Move fileExists to Platform.h 4 https://bugs.webkit.org/show_bug.cgi?id=87531 5 6 Reviewed by Adam Barth. 7 8 Call fileExists through fileUtilities(), not directly. 9 10 * chromium/public/Platform.h: 11 (Platform): 12 1 13 2012-05-29 Mark Pilgrim <pilgrim@chromium.org> 2 14 -
trunk/Source/Platform/chromium/public/Platform.h
r118873 r118894 106 106 // Must return non-null. 107 107 virtual WebFileSystem* fileSystem() { return 0; } 108 109 virtual bool fileExists(const WebString&) { return false; }110 108 111 109 -
trunk/Source/WebCore/ChangeLog
r118892 r118894 1 2012-05-29 Mark Pilgrim <pilgrim@chromium.org> 2 3 [Chromium] Move fileExists to Platform.h 4 https://bugs.webkit.org/show_bug.cgi?id=87531 5 6 Reviewed by Adam Barth. 7 8 Call fileExists through fileUtilities(), not directly. 9 10 * platform/chromium/FileSystemChromium.cpp: 11 (WebCore::fileExists): 12 1 13 2012-05-29 Kentaro Hara <haraken@chromium.org> 2 14 -
trunk/Source/WebCore/platform/chromium/FileSystemChromium.cpp
r118873 r118894 38 38 39 39 #include <public/Platform.h> 40 #include <public/WebFileUtilities.h> 40 41 41 42 namespace WebCore { … … 91 92 bool fileExists(const String& path) 92 93 { 93 return WebKit::Platform::current()->file Exists(path);94 return WebKit::Platform::current()->fileUtilities()->fileExists(path); 94 95 } 95 96
Note:
See TracChangeset
for help on using the changeset viewer.