Changeset 175621 in webkit


Ignore:
Timestamp:
Nov 5, 2014 9:35:17 AM (9 years ago)
Author:
commit-queue@webkit.org
Message:

[WinCairo] Compile error, missing guard.
https://bugs.webkit.org/show_bug.cgi?id=138421

Patch by peavo@outlook.com <peavo@outlook.com> on 2014-11-05
Reviewed by Brent Fulgham.

There is missing a guard for CSS_SELECTORS_LEVEL4 in CSSParserValues.cpp.

  • css/CSSParserValues.cpp:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r175620 r175621  
     12014-11-05  peavo@outlook.com  <peavo@outlook.com>
     2
     3        [WinCairo] Compile error, missing guard.
     4        https://bugs.webkit.org/show_bug.cgi?id=138421
     5
     6        Reviewed by Brent Fulgham.
     7
     8        There is missing a guard for CSS_SELECTORS_LEVEL4 in CSSParserValues.cpp.
     9
     10        * css/CSSParserValues.cpp:
     11
    1122014-11-05  Antti Koivisto  <antti@apple.com>
    213
  • trunk/Source/WebCore/css/CSSParserValues.cpp

    r175446 r175621  
    262262}
    263263
     264#if ENABLE(CSS_SELECTORS_LEVEL4)
    264265void CSSParserSelector::setArgumentList(Vector<CSSParserString>& stringVector)
    265266{
     
    271272    m_selector->setArgumentList(WTF::move(argumentList));
    272273}
     274#endif
    273275
    274276void CSSParserSelector::setPseudoClassValue(const CSSParserString& pseudoClassString)
Note: See TracChangeset for help on using the changeset viewer.