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

Changeset 101206 in webkit


Ignore:
Timestamp:
Nov 27, 2011, 12:20:28 PM (15 years ago)
Author:
commit-queue@webkit.org
Message:

CSS/XSLStyleSheet: checkLoaded() needn't be virtual.
<http://webkit.org/b/73169>

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

Devirtualize checkLoaded() in CSSStyleSheet and XSLStyleSheet as they
are not overriding anything, nor are they ever overridden.

  • css/CSSStyleSheet.h:
  • xml/XSLStyleSheet.h:
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r101205 r101206  
     12011-11-27  Andreas Kling  <kling@webkit.org>
     2
     3        CSS/XSLStyleSheet: checkLoaded() needn't be virtual.
     4        <http://webkit.org/b/73169>
     5
     6        Reviewed by Antti Koivisto.
     7
     8        Devirtualize checkLoaded() in CSSStyleSheet and XSLStyleSheet as they
     9        are not overriding anything, nor are they ever overridden.
     10
     11        * css/CSSStyleSheet.h:
     12        * xml/XSLStyleSheet.h:
     13
    1142011-11-27  Andreas Kling  <kling@webkit.org>
    215
  • trunk/Source/WebCore/css/CSSStyleSheet.h

    r101204 r101206  
    8989    virtual bool isLoading();
    9090
    91     virtual void checkLoaded();
     91    void checkLoaded();
    9292    void startLoadingDynamicSheet();
    9393
  • trunk/Source/WebCore/xml/XSLStyleSheet.h

    r98853 r101206  
    7373   
    7474    virtual bool isLoading();
    75     virtual void checkLoaded();
     75    void checkLoaded();
    7676
    7777    void loadChildSheets();
Note: See TracChangeset for help on using the changeset viewer.