Changeset 145376 in webkit


Ignore:
Timestamp:
Mar 11, 2013 11:24:21 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[SOUP] ResourceRequest::updateSoupMessage doesn't update the URI of the soup message
https://bugs.webkit.org/show_bug.cgi?id=112040

Patch by Carlos Garcia Campos <cgarcia@igalia.com> on 2013-03-11
Reviewed by Gustavo Noronha Silva.

  • platform/network/soup/ResourceRequestSoup.cpp:

(WebCore::ResourceRequest::updateSoupMessage): Update the soup
message URI with the ResourceRequest URL.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r145375 r145376  
     12013-03-11  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        [SOUP] ResourceRequest::updateSoupMessage doesn't update the URI of the soup message
     4        https://bugs.webkit.org/show_bug.cgi?id=112040
     5
     6        Reviewed by Gustavo Noronha Silva.
     7
     8        * platform/network/soup/ResourceRequestSoup.cpp:
     9        (WebCore::ResourceRequest::updateSoupMessage): Update the soup
     10        message URI with the ResourceRequest URL.
     11
    1122013-03-11  Alec Flett  <alecflett@chromium.org>
    213
  • trunk/Source/WebCore/platform/network/soup/ResourceRequestSoup.cpp

    r137947 r145376  
    3838{
    3939    g_object_set(soupMessage, SOUP_MESSAGE_METHOD, httpMethod().utf8().data(), NULL);
     40
     41    GOwnPtr<SoupURI> uri(soupURI());
     42    soup_message_set_uri(soupMessage, uri.get());
    4043
    4144    const HTTPHeaderMap& headers = httpHeaderFields();
Note: See TracChangeset for help on using the changeset viewer.