[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

eric at webkit.org eric at webkit.org
Thu Apr 8 02:23:00 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 336221478f24fd1e813b6a488cec0db28b1f205c
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Mar 15 23:20:24 2010 +0000

    2010-03-15  Leandro Pereira  <leandro at profusion.mobi>
    
            Reviewed by Eric Seidel.
    
            Add EFL port files to platform/efl.
            http://webkit.org/b/35885
    
            * platform/efl/KURLEfl.cpp: Added.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@56023 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 61ce6af..d8ef2b9 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,12 @@
+2010-03-15  Leandro Pereira  <leandro at profusion.mobi>
+
+        Reviewed by Eric Seidel.
+
+        Add EFL port files to platform/efl.
+        http://webkit.org/b/35885
+
+        * platform/efl/KURLEfl.cpp: Added.
+
 2010-03-15  Chris Fleizach  <cfleizach at apple.com>
 
         Reviewed by Beth Dakin.
diff --git a/WebCore/platform/efl/KURLEfl.cpp b/WebCore/platform/efl/KURLEfl.cpp
new file mode 100644
index 0000000..69af7ba
--- /dev/null
+++ b/WebCore/platform/efl/KURLEfl.cpp
@@ -0,0 +1,34 @@
+/*
+ * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
+ * Copyright (C) 2009-2010 ProFUSION embedded systems
+ * Copyright (C) 2009-2010 Samsung Electronics
+ *
+ *  This library is free software; you can redistribute it and/or
+ *  modify it under the terms of the GNU Lesser General Public
+ *  License as published by the Free Software Foundation; either
+ *  version 2 of the License, or (at your option) any later version.
+ *
+ *  This library is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ *  Lesser General Public License for more details.
+ *
+ *  You should have received a copy of the GNU Lesser General Public
+ *  License along with this library; if not, write to the Free Software
+ *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+#include "config.h"
+#include "KURL.h"
+
+namespace WebCore {
+
+String KURL::fileSystemPath() const
+{
+    if (!isValid() || !protocolIs("file"))
+        return String();
+
+    return String(path());
+}
+
+} // namespace WebCore

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list