Changeset 51408 in webkit


Ignore:
Timestamp:
Nov 26, 2009 2:31:16 AM (14 years ago)
Author:
zecke@webkit.org
Message:

Fix compilation of REQUEST_DEBUG debug code

https://bugs.webkit.org/show_bug.cgi?id=31850

In r47907 the single parameter KURL constructor to parse
from a WebCore::String was replaced with a two parameter
constructor. I think in this debug case parsing the urls
again is no problem and I have changed the code to use the
two parameter version.

  • loader/loader.cpp:

(WebCore::Loader::Host::didFinishLoading):

Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r51407 r51408  
     12009-11-24  Holger Hans Peter Freyther  <zecke@selfish.org>
     2
     3        Reviewed by Alexey Proskuryakov.
     4
     5        Fix compilation of REQUEST_DEBUG debug code
     6        https://bugs.webkit.org/show_bug.cgi?id=31850
     7
     8        In r47907 the single parameter KURL constructor to parse
     9        from a WebCore::String was replaced with a two parameter
     10        constructor. I think in this debug case parsing the urls
     11        again is no problem and I have changed the code to use the
     12        two parameter version.
     13
     14        * loader/loader.cpp:
     15        (WebCore::Loader::Host::didFinishLoading):
     16
    1172009-11-26  Søren Gjesse  <sgjesse@chromium.org>
    218
  • trunk/WebCore/loader/loader.cpp

    r47907 r51408  
    376376
    377377#if REQUEST_DEBUG
    378     KURL u(resource->url());
     378    KURL u(ParsedURLString, resource->url());
    379379    printf("HOST %s COUNT %d RECEIVED %s\n", u.host().latin1().data(), m_requestsLoading.size(), resource->url().latin1().data());
    380380#endif
Note: See TracChangeset for help on using the changeset viewer.