Changeset 150799 in webkit


Ignore:
Timestamp:
May 28, 2013 6:22:22 AM (11 years ago)
Author:
zandobersek@gmail.com
Message:

Remove CachedResourceRequest::initiatorElement
https://bugs.webkit.org/show_bug.cgi?id=116862

Reviewed by Andreas Kling.

The CachedResourceRequest::initiatorElement method is not used anywhere and should be removed.

  • loader/cache/CachedResourceRequest.cpp: Remove the initiatorElement method definition.
  • loader/cache/CachedResourceRequest.h:

(CachedResourceRequest): Remove the initiatorElement method declaration.

Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r150796 r150799  
     12013-05-28  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        Remove CachedResourceRequest::initiatorElement
     4        https://bugs.webkit.org/show_bug.cgi?id=116862
     5
     6        Reviewed by Andreas Kling.
     7
     8        The CachedResourceRequest::initiatorElement method is not used anywhere and should be removed.
     9
     10        * loader/cache/CachedResourceRequest.cpp: Remove the initiatorElement method definition.
     11        * loader/cache/CachedResourceRequest.h:
     12        (CachedResourceRequest): Remove the initiatorElement method declaration.
     13
    1142013-05-28  Andreas Kling  <akling@apple.com>
    215
  • trunk/Source/WebCore/loader/cache/CachedResourceRequest.cpp

    r135452 r150799  
    8888}
    8989
    90 PassRefPtr<Element> CachedResourceRequest::initiatorElement()
    91 {
    92     return m_initiatorElement;
    93 }
    94 
    9590} // namespace WebCore
  • trunk/Source/WebCore/loader/cache/CachedResourceRequest.h

    r142427 r150799  
    6161    void setInitiator(const AtomicString& name);
    6262    const AtomicString& initiatorName() const;
    63     PassRefPtr<Element> initiatorElement();
    6463
    6564private:
Note: See TracChangeset for help on using the changeset viewer.