Title: [200168] trunk/Source/WebCore
Revision
200168
Author
[email protected]
Date
2016-04-27 20:33:45 -0700 (Wed, 27 Apr 2016)

Log Message

Build fix followup to r200163

Unreviewed.

* platform/efl/FileSystemEfl.cpp:
(WebCore::stringFromFileSystemRepresentation): At least stub this out for now until EFL folks can do better.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (200167 => 200168)


--- trunk/Source/WebCore/ChangeLog	2016-04-28 02:11:18 UTC (rev 200167)
+++ trunk/Source/WebCore/ChangeLog	2016-04-28 03:33:45 UTC (rev 200168)
@@ -1,3 +1,12 @@
+2016-04-27  Brady Eidson  <[email protected]>
+
+        Build fix followup to r200163
+        
+        Unreviewed.
+
+        * platform/efl/FileSystemEfl.cpp:
+        (WebCore::stringFromFileSystemRepresentation): At least stub this out for now until EFL folks can do better.
+
 2016-04-27  Saam barati  <[email protected]>
 
         Move the implementation of Settings::globalConstRedeclarationShouldThrow into the cpp file

Modified: trunk/Source/WebCore/platform/efl/FileSystemEfl.cpp (200167 => 200168)


--- trunk/Source/WebCore/platform/efl/FileSystemEfl.cpp	2016-04-28 02:11:18 UTC (rev 200167)
+++ trunk/Source/WebCore/platform/efl/FileSystemEfl.cpp	2016-04-28 03:33:45 UTC (rev 200168)
@@ -63,6 +63,12 @@
 #endif
 }
 
+String stringFromFileSystemRepresentation(const char* fileSystemRepresentation)
+{
+    // FIXME: This needs to do the opposite of fileSystemRepresentation.
+    return String::fromUTF8(fileSystemRepresentation);
+}
+
 bool unloadModule(PlatformModule module)
 {
     // caution, closing handle will make memory vanish and any remaining
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to