Changeset 47912

Show
Ignore:
Timestamp:
08/31/09 16:30:23 (7 months ago)
Author:
ojan@chromium.org
Message:

Not reviewed (build fix)

Build fix for Chromium to match r49707.

* bindings/v8/ScriptCallFrame.cpp:
(WebCore::ScriptCallFrame::ScriptCallFrame):
* bindings/v8/ScriptSourceCode.h:
(WebCore::ScriptSourceCode::ScriptSourceCode):
* platform/KURLGoogle.cpp:
(WebCore::KURL::KURL):
(WebCore::blankURL):

Location:
trunk/WebCore
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r47910 r47912  
     12009-08-31  Ojan Vafai  <ojan@chromium.org> 
     2 
     3        Not reviewed (build fix) 
     4 
     5        Build fix for Chromium to match r49707. 
     6 
     7        * bindings/v8/ScriptCallFrame.cpp: 
     8        (WebCore::ScriptCallFrame::ScriptCallFrame): 
     9        * bindings/v8/ScriptSourceCode.h: 
     10        (WebCore::ScriptSourceCode::ScriptSourceCode): 
     11        * platform/KURLGoogle.cpp: 
     12        (WebCore::KURL::KURL): 
     13        (WebCore::blankURL): 
     14 
    1152009-08-31  Alexey Proskuryakov  <ap@webkit.org> 
    216 
  • trunk/WebCore/bindings/v8/ScriptCallFrame.cpp

    r41159 r47912  
    4343ScriptCallFrame::ScriptCallFrame(const String& functionName, const String& urlString, int lineNumber, const v8::Arguments& arguments, unsigned skipArgumentCount) 
    4444    : m_functionName(functionName) 
    45     , m_sourceURL(urlString) 
     45    , m_sourceURL(ParsedURLString, urlString) 
    4646    , m_lineNumber(lineNumber) 
    4747{ 
  • trunk/WebCore/bindings/v8/ScriptSourceCode.h

    r41159 r47912  
    5151    ScriptSourceCode(CachedScript* cs) 
    5252        : m_source(cs->script()) 
    53         , m_url(cs->url()) 
     53        , m_url(ParsedURLString, cs->url()) 
    5454        , m_startLine(1) 
    5555    { 
  • trunk/WebCore/platform/KURLGoogle.cpp

    r47819 r47912  
    332332// WebCore generally calls this only with hardcoded strings, so the input is 
    333333// ASCII. We treat is as UTF-8 just in case. 
    334 KURL::KURL(const char *url) 
     334KURL::KURL(ParsedURLStringTag, const char *url) 
    335335{ 
    336336    // FIXME The Mac code checks for beginning with a slash and converting to a 
     
    350350// canonical and in proper escaped form so needs no encoding. We treat it was 
    351351// UTF-8 just in case. 
    352 KURL::KURL(const String& url) 
     352KURL::KURL(ParsedURLStringTag, const String& url) 
    353353{ 
    354354    if (!url.isNull()) 
     
    926926const KURL& blankURL() 
    927927{ 
    928     static KURL staticBlankURL("about:blank"); 
     928    static KURL staticBlankURL(ParsedURLString, "about:blank"); 
    929929    return staticBlankURL; 
    930930}