[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

andreas.kling at nokia.com andreas.kling at nokia.com
Wed Dec 22 13:20:30 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 275856b1868335bed3c898ecabaa19b2de80f686
Author: andreas.kling at nokia.com <andreas.kling at nokia.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Sep 11 18:28:51 2010 +0000

    2010-09-11  Andreas Kling  <andreas.kling at nokia.com>
    
            Reviewed by Simon Hausmann.
    
            [Qt] V8 port: Fix "WTF::String::utf8" returns incomplete type WTF::CString
            https://bugs.webkit.org/show_bug.cgi?id=45157
    
            Include CString.h where necessary. Chromium builds would get it from
            KURLGooglePrivate.h so this is only an issue for Qt + V8.
    
            * bindings/v8/V8Proxy.cpp:
            * inspector/InspectorDebuggerAgent.cpp:
            * inspector/InspectorProfilerAgent.cpp:
            * plugins/PluginDatabase.cpp:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@67308 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 6ca1728..d8e9626 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,18 @@
+2010-09-11  Andreas Kling  <andreas.kling at nokia.com>
+
+        Reviewed by Simon Hausmann.
+
+        [Qt] V8 port: Fix "WTF::String::utf8" returns incomplete type WTF::CString
+        https://bugs.webkit.org/show_bug.cgi?id=45157
+
+        Include CString.h where necessary. Chromium builds would get it from
+        KURLGooglePrivate.h so this is only an issue for Qt + V8.
+
+        * bindings/v8/V8Proxy.cpp:
+        * inspector/InspectorDebuggerAgent.cpp:
+        * inspector/InspectorProfilerAgent.cpp:
+        * plugins/PluginDatabase.cpp:
+
 2010-09-11  Simon Hausmann  <simon.hausmann at nokia.com>
 
         Reviewed by Andreas Kling.
diff --git a/WebCore/bindings/v8/V8Proxy.cpp b/WebCore/bindings/v8/V8Proxy.cpp
index 077c0df..a776ee7 100644
--- a/WebCore/bindings/v8/V8Proxy.cpp
+++ b/WebCore/bindings/v8/V8Proxy.cpp
@@ -77,6 +77,7 @@
 #include <wtf/StdLibExtras.h>
 #include <wtf/StringExtras.h>
 #include <wtf/UnusedParam.h>
+#include <wtf/text/CString.h>
 
 namespace WebCore {
 
diff --git a/WebCore/inspector/InspectorDebuggerAgent.cpp b/WebCore/inspector/InspectorDebuggerAgent.cpp
index fd9fdf3..a111197 100644
--- a/WebCore/inspector/InspectorDebuggerAgent.cpp
+++ b/WebCore/inspector/InspectorDebuggerAgent.cpp
@@ -38,6 +38,7 @@
 #include "PlatformString.h"
 #include "ScriptDebugServer.h"
 #include <wtf/MD5.h>
+#include <wtf/text/CString.h>
 
 namespace WebCore {
 
diff --git a/WebCore/inspector/InspectorProfilerAgent.cpp b/WebCore/inspector/InspectorProfilerAgent.cpp
index 9161c3b..09b2b32 100644
--- a/WebCore/inspector/InspectorProfilerAgent.cpp
+++ b/WebCore/inspector/InspectorProfilerAgent.cpp
@@ -43,6 +43,7 @@
 #include "ScriptProfile.h"
 #include "ScriptProfiler.h"
 #include <wtf/OwnPtr.h>
+#include <wtf/text/CString.h>
 
 #if USE(JSC)
 #include "JSDOMWindow.h"
diff --git a/WebCore/plugins/PluginDatabase.cpp b/WebCore/plugins/PluginDatabase.cpp
index d3e922a..7f46758 100644
--- a/WebCore/plugins/PluginDatabase.cpp
+++ b/WebCore/plugins/PluginDatabase.cpp
@@ -34,6 +34,7 @@
 #include "FileSystem.h"
 #endif
 #include <stdlib.h>
+#include <wtf/text/CString.h>
 
 namespace WebCore {
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list