Changeset 44065 in webkit


Ignore:
Timestamp:
May 22, 2009 2:15:47 PM (15 years ago)
Author:
abarth@webkit.org
Message:

2009-05-22 Adam Barth <abarth@webkit.org>

Reviewed by Darin Fisher.

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

Remove redudant member from Chromium's ResourceRequest. We already
have this data in the cross-platform ResourceRequestBase. Also, rename
ChromiumBridge parameter to be consistant with the new name for this
piece of data.

  • platform/chromium/ChromiumBridge.h:
  • platform/network/chromium/ResourceRequest.h:
Location:
trunk/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r44059 r44065  
     12009-05-22  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Darin Fisher.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=25966
     6
     7        Remove redudant member from Chromium's ResourceRequest.  We already
     8        have this data in the cross-platform ResourceRequestBase.  Also, rename
     9        ChromiumBridge parameter to be consistant with the new name for this
     10        piece of data.
     11
     12        * platform/chromium/ChromiumBridge.h:
     13        * platform/network/chromium/ResourceRequest.h:
     14
    1152009-05-22  Kevin Watters  <kevinwatters@gmail.com>
    216
  • trunk/WebCore/platform/chromium/ChromiumBridge.h

    r43001 r44065  
    7777
    7878        // Cookies ------------------------------------------------------------
    79         static void setCookies(const KURL& url, const KURL& policyURL, const String& value);
    80         static String cookies(const KURL& url, const KURL& policyURL);
     79        static void setCookies(const KURL& url, const KURL& firstPartyForCookies, const String& value);
     80        static String cookies(const KURL& url, const KURL& firstPartyForCookies);
    8181
    8282        // DNS ----------------------------------------------------------------
  • trunk/WebCore/platform/network/chromium/ResourceRequest.h

    r42180 r44065  
    101101        void setTargetType(TargetType type) { m_targetType = type; }
    102102
    103         // The document's policy base url.
    104         KURL policyURL() const { return m_policyURL; }
    105         void setPolicyURL(const KURL& policyURL) { m_policyURL = policyURL; }
    106 
    107103        // The process id of the process from which this request originated. In
    108104        // the case of out-of-process plugins, this allows to link back the
     
    136132        TargetType m_targetType;
    137133        CString m_securityInfo;
    138         KURL m_policyURL;
    139134    };
    140135
Note: See TracChangeset for help on using the changeset viewer.