Title: [182758] trunk/Source/WebCore
Revision
182758
Author
[email protected]
Date
2015-04-13 14:42:16 -0700 (Mon, 13 Apr 2015)

Log Message

[Win] Unreviewed fix after r182757.

* platform/win/FileSystemWin.cpp:
(WebCore::renameFile): Checked in wrong version.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (182757 => 182758)


--- trunk/Source/WebCore/ChangeLog	2015-04-13 21:37:42 UTC (rev 182757)
+++ trunk/Source/WebCore/ChangeLog	2015-04-13 21:42:16 UTC (rev 182758)
@@ -1,5 +1,12 @@
 2015-04-13  Brent Fulgham  <[email protected]>
 
+        [Win] Unreviewed fix after r182757.
+
+        * platform/win/FileSystemWin.cpp:
+        (WebCore::renameFile): Checked in wrong version.
+
+2015-04-13  Brent Fulgham  <[email protected]>
+
         [Win] Unreviewed fix after r182161.
 
         The change caused Windows to lose Media UI, since the new 'getFileSize'

Modified: trunk/Source/WebCore/platform/win/FileSystemWin.cpp (182757 => 182758)


--- trunk/Source/WebCore/platform/win/FileSystemWin.cpp	2015-04-13 21:37:42 UTC (rev 182757)
+++ trunk/Source/WebCore/platform/win/FileSystemWin.cpp	2015-04-13 21:42:16 UTC (rev 182758)
@@ -186,8 +186,7 @@
     if (!newPathFsRep.data() || newPathFsRep.data()[0] == '\0')
         return false;
 
-    notImplemented();
-    return false;
+    return ::MoveFileA(oldPathFsRep.data(), newPathFsRep.data());
 }
 
 String pathByAppendingComponent(const String& path, const String& component)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to