Changeset 67308 in webkit


Ignore:
Timestamp:
Sep 11, 2010 11:28:51 AM (14 years ago)
Author:
andreas.kling@nokia.com
Message:

2010-09-11 Andreas Kling <andreas.kling@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:
Location:
trunk/WebCore
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r67307 r67308  
     12010-09-11  Andreas Kling  <andreas.kling@nokia.com>
     2
     3        Reviewed by Simon Hausmann.
     4
     5        [Qt] V8 port: Fix "WTF::String::utf8" returns incomplete type WTF::CString
     6        https://bugs.webkit.org/show_bug.cgi?id=45157
     7
     8        Include CString.h where necessary. Chromium builds would get it from
     9        KURLGooglePrivate.h so this is only an issue for Qt + V8.
     10
     11        * bindings/v8/V8Proxy.cpp:
     12        * inspector/InspectorDebuggerAgent.cpp:
     13        * inspector/InspectorProfilerAgent.cpp:
     14        * plugins/PluginDatabase.cpp:
     15
    1162010-09-11  Simon Hausmann  <simon.hausmann@nokia.com>
    217
  • trunk/WebCore/bindings/v8/V8Proxy.cpp

    r66211 r67308  
    7878#include <wtf/StringExtras.h>
    7979#include <wtf/UnusedParam.h>
     80#include <wtf/text/CString.h>
    8081
    8182namespace WebCore {
  • trunk/WebCore/inspector/InspectorDebuggerAgent.cpp

    r66730 r67308  
    3939#include "ScriptDebugServer.h"
    4040#include <wtf/MD5.h>
     41#include <wtf/text/CString.h>
    4142
    4243namespace WebCore {
  • trunk/WebCore/inspector/InspectorProfilerAgent.cpp

    r66117 r67308  
    4444#include "ScriptProfiler.h"
    4545#include <wtf/OwnPtr.h>
     46#include <wtf/text/CString.h>
    4647
    4748#if USE(JSC)
  • trunk/WebCore/plugins/PluginDatabase.cpp

    r67028 r67308  
    3535#endif
    3636#include <stdlib.h>
     37#include <wtf/text/CString.h>
    3738
    3839namespace WebCore {
Note: See TracChangeset for help on using the changeset viewer.