⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 101204 in webkit


Ignore:
Timestamp:
Nov 27, 2011, 11:48:32 AM (15 years ago)
Author:
commit-queue@webkit.org
Message:

CSSStyleSheet: Removed unused create() overload.
<http://webkit.org/b/73170>

Patch by Andreas Kling <kling@webkit.org> on 2011-11-27
Reviewed by Antonio Gomes.

Nobody was using CSSStyleSheet::create(ownerNode, originalURL, finalURL)
so remove it.

  • css/CSSStyleSheet.h:

(WebCore::CSSStyleSheet::create):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r101202 r101204  
     12011-11-27  Andreas Kling  <kling@webkit.org>
     2
     3        CSSStyleSheet: Removed unused create() overload.
     4        <http://webkit.org/b/73170>
     5
     6        Reviewed by Antonio Gomes.
     7
     8        Nobody was using CSSStyleSheet::create(ownerNode, originalURL, finalURL)
     9        so remove it.
     10
     11        * css/CSSStyleSheet.h:
     12        (WebCore::CSSStyleSheet::create):
     13
    1142011-11-27  Robert Hogan  <robert@webkit.org>
    215
  • trunk/Source/WebCore/css/CSSStyleSheet.h

    r100935 r101204  
    4444    {
    4545        return adoptRef(new CSSStyleSheet(ownerNode, String(), KURL(), String()));
    46     }
    47     static PassRefPtr<CSSStyleSheet> create(Node* ownerNode, const String& originalURL, const KURL& finalURL)
    48     {
    49         return adoptRef(new CSSStyleSheet(ownerNode, originalURL, finalURL, String()));
    5046    }
    5147    static PassRefPtr<CSSStyleSheet> create(Node* ownerNode, const String& originalURL, const KURL& finalURL, const String& charset)
Note: See TracChangeset for help on using the changeset viewer.