Changeset 201173 in webkit


Ignore:
Timestamp:
May 19, 2016, 11:50:32 AM (9 years ago)
Author:
Csaba Osztrogonác
Message:

Fix the build with GCC 4.9 in CSSParser.cpp
https://bugs.webkit.org/show_bug.cgi?id=157887

Reviewed by Chris Dumez.

  • css/CSSParser.cpp:

(WebCore::CSSParser::createViewportRule):

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

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r201168 r201173  
     12016-05-19  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        Fix the build with GCC 4.9 in CSSParser.cpp
     4        https://bugs.webkit.org/show_bug.cgi?id=157887
     5
     6        Reviewed by Chris Dumez.
     7
     8        * css/CSSParser.cpp:
     9        (WebCore::CSSParser::createViewportRule):
     10        * css/CSSParser.h:
     11
    1122016-05-18  Brian Burg  <bburg@apple.com>
    213
  • trunk/Source/WebCore/css/CSSParser.cpp

    r201113 r201173  
    1345713457
    1345813458#if ENABLE(CSS_DEVICE_ADAPTATION)
    13459 Ref<StyleRuleBase> CSSParser::createViewportRule()
     13459Ref<StyleRuleViewport> CSSParser::createViewportRule()
    1346013460{
    1346113461    m_allowImportRules = m_allowNamespaceDeclarations = false;
  • trunk/Source/WebCore/css/CSSParser.h

    r201113 r201173  
    6868class StyleRuleBase;
    6969class StyleRuleKeyframes;
     70class StyleRuleViewport;
    7071class StyleKeyframe;
    7172class StyleSheetContents;
     
    463464    void markViewportRuleBodyStart() { m_inViewport = true; }
    464465    void markViewportRuleBodyEnd() { m_inViewport = false; }
    465     Ref<StyleRuleBase> createViewportRule();
     466    Ref<StyleRuleViewport> createViewportRule();
    466467#endif
    467468
Note: See TracChangeset for help on using the changeset viewer.