Changeset 47912
- Timestamp:
- 08/31/09 16:30:23 (7 months ago)
- Location:
- trunk/WebCore
- Files:
-
- 4 modified
-
ChangeLog (modified) (1 diff)
-
bindings/v8/ScriptCallFrame.cpp (modified) (1 diff)
-
bindings/v8/ScriptSourceCode.h (modified) (1 diff)
-
platform/KURLGoogle.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/ChangeLog
r47910 r47912 1 2009-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 1 15 2009-08-31 Alexey Proskuryakov <ap@webkit.org> 2 16 -
trunk/WebCore/bindings/v8/ScriptCallFrame.cpp
r41159 r47912 43 43 ScriptCallFrame::ScriptCallFrame(const String& functionName, const String& urlString, int lineNumber, const v8::Arguments& arguments, unsigned skipArgumentCount) 44 44 : m_functionName(functionName) 45 , m_sourceURL( urlString)45 , m_sourceURL(ParsedURLString, urlString) 46 46 , m_lineNumber(lineNumber) 47 47 { -
trunk/WebCore/bindings/v8/ScriptSourceCode.h
r41159 r47912 51 51 ScriptSourceCode(CachedScript* cs) 52 52 : m_source(cs->script()) 53 , m_url( cs->url())53 , m_url(ParsedURLString, cs->url()) 54 54 , m_startLine(1) 55 55 { -
trunk/WebCore/platform/KURLGoogle.cpp
r47819 r47912 332 332 // WebCore generally calls this only with hardcoded strings, so the input is 333 333 // ASCII. We treat is as UTF-8 just in case. 334 KURL::KURL( const char *url)334 KURL::KURL(ParsedURLStringTag, const char *url) 335 335 { 336 336 // FIXME The Mac code checks for beginning with a slash and converting to a … … 350 350 // canonical and in proper escaped form so needs no encoding. We treat it was 351 351 // UTF-8 just in case. 352 KURL::KURL( const String& url)352 KURL::KURL(ParsedURLStringTag, const String& url) 353 353 { 354 354 if (!url.isNull()) … … 926 926 const KURL& blankURL() 927 927 { 928 static KURL staticBlankURL( "about:blank");928 static KURL staticBlankURL(ParsedURLString, "about:blank"); 929 929 return staticBlankURL; 930 930 }