[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.20-204-g221d8e8

eric at webkit.org eric at webkit.org
Wed Feb 10 22:11:48 UTC 2010


The following commit has been merged in the webkit-1.1 branch:
commit 5b1876bdfb86d26e6721d97d590bf1de0f65fa2a
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Feb 4 02:23:13 2010 +0000

    2010-02-03  Kwang Yul Seo  <skyul at company100.net>
    
            Reviewed by Eric Seidel.
    
            [BREWMP] Port TextBreakIteratorInternalICU
            https://bugs.webkit.org/show_bug.cgi?id=34515
    
            Port TextBreakIteratorInternalICU.
    
            * platform/text/brew/TextBreakIteratorInternalICUBrew.cpp: Added.
            (WebCore::currentSearchLocaleID):
            (WebCore::currentTextBreakLocaleID):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@54318 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 50b81c0..f858f9b 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,16 @@
+2010-02-03  Kwang Yul Seo  <skyul at company100.net>
+
+        Reviewed by Eric Seidel.
+
+        [BREWMP] Port TextBreakIteratorInternalICU
+        https://bugs.webkit.org/show_bug.cgi?id=34515
+
+        Port TextBreakIteratorInternalICU.
+
+        * platform/text/brew/TextBreakIteratorInternalICUBrew.cpp: Added.
+        (WebCore::currentSearchLocaleID):
+        (WebCore::currentTextBreakLocaleID):
+
 2010-02-03  Adele Peterson  <adele at apple.com>
 
         Reviewed by Simon Fraser.
diff --git a/WebCore/platform/text/brew/TextBreakIteratorInternalICUBrew.cpp b/WebCore/platform/text/brew/TextBreakIteratorInternalICUBrew.cpp
new file mode 100644
index 0000000..4384411
--- /dev/null
+++ b/WebCore/platform/text/brew/TextBreakIteratorInternalICUBrew.cpp
@@ -0,0 +1,41 @@
+/*
+ * Copyright (C) 2010 Company 100, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library 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
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public License
+ * along with this library; see the file COPYING.LIB.  If not, write to
+ * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ *
+ */
+
+#include "config.h"
+#include "TextBreakIteratorInternalICU.h"
+
+#include "NotImplemented.h"
+
+namespace WebCore {
+
+const char* currentSearchLocaleID()
+{
+    notImplemented();
+    return "";
+}
+
+const char* currentTextBreakLocaleID()
+{
+    notImplemented();
+    return "en_us";
+}
+
+} // namespace WebCore
+

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list