Changeset 221056 in webkit


Ignore:
Timestamp:
Aug 22, 2017 4:46:29 PM (7 years ago)
Author:
Brent Fulgham
Message:

Correct SOUP builds after r221017 and r221050.
https://bugs.webkit.org/show_bug.cgi?id=175846

Reviewed by Michael Catanzaro.

  • platform/network/soup/CookieJarSoup.cpp:

(WebCore::cookiesForDOM): Revise return type.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r221050 r221056  
     12017-08-22  Brent Fulgham  <bfulgham@apple.com>
     2
     3        Correct SOUP builds after r221017 and r221050.
     4        https://bugs.webkit.org/show_bug.cgi?id=175846
     5
     6        Reviewed by Michael Catanzaro.
     7
     8        * platform/network/soup/CookieJarSoup.cpp:
     9        (WebCore::cookiesForDOM): Revise return type.
     10
    1112017-08-22  Brent Fulgham  <bfulgham@apple.com>
    212
  • trunk/Source/WebCore/platform/network/soup/CookieJarSoup.cpp

    r221050 r221056  
    9191std::pair<String, bool> cookiesForDOM(const NetworkStorageSession& session, const URL&, const URL& url, IncludeSecureCookies)
    9292{
    93     // FIXME: SOUP concept of secure cookies should be filtered here.
    94     return cookiesForSession(session, url, false);
     93    // FIXME(175850): SOUP concept of secure cookies should be filtered here.
     94    return { cookiesForSession(session, url, false), false };
    9595}
    9696
Note: See TracChangeset for help on using the changeset viewer.