Changeset 161636 in webkit


Ignore:
Timestamp:
Jan 10, 2014 8:31:13 AM (10 years ago)
Author:
abucur@adobe.com
Message:

[CSS Regions] Remove unused CSSParser::parseFlowThread
https://bugs.webkit.org/show_bug.cgi?id=126749

Reviewed by Antti Koivisto.

There are two versions of CSSParser::parseFlowThread. Remove the unused one:
bool parseFlowThread(const String& flowName);

Tests: No tests, code cleanup.

  • css/CSSParser.cpp:
  • css/CSSParser.h:
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r161635 r161636  
     12014-01-10  Andrei Bucur  <abucur@adobe.com>
     2
     3        [CSS Regions] Remove unused CSSParser::parseFlowThread
     4        https://bugs.webkit.org/show_bug.cgi?id=126749
     5
     6        Reviewed by Antti Koivisto.
     7
     8        There are two versions of CSSParser::parseFlowThread. Remove the unused one:
     9        bool parseFlowThread(const String& flowName);
     10
     11        Tests: No tests, code cleanup.
     12
     13        * css/CSSParser.cpp:
     14        * css/CSSParser.h:
     15
    1162014-01-10  Alex Christensen  <achristensen@webkit.org>
    217
  • trunk/Source/WebCore/css/CSSParser.cpp

    r161569 r161636  
    98899889
    98909890#if ENABLE(CSS_REGIONS)
    9891 bool CSSParser::parseFlowThread(const String& flowName)
    9892 {
    9893     setupParser("@-webkit-decls{-webkit-flow-into:", flowName, "}");
    9894     cssyyparse(this);
    9895 
    9896     m_rule = 0;
    9897 
    9898     return ((m_parsedProperties.size() == 1) && (m_parsedProperties.first().id() == CSSPropertyWebkitFlowInto));
    9899 }
    99009891
    99019892// none | <ident>
  • trunk/Source/WebCore/css/CSSParser.h

    r161067 r161636  
    307307    bool cssRegionsEnabled() const;
    308308    bool cssCompositingEnabled() const;
    309     bool parseFlowThread(const String& flowName);
    310309    bool parseFlowThread(CSSPropertyID, bool important);
    311310    bool parseRegionThread(CSSPropertyID, bool important);
Note: See TracChangeset for help on using the changeset viewer.