Changeset 64465 in webkit


Ignore:
Timestamp:
Aug 2, 2010 9:17:56 AM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-08-02 Kristian Monsen <kristianm@google.com>

Reviewed by Steve Block.

Compile fix for Android, adding guards around filter specific code.
https://bugs.webkit.org/show_bug.cgi?id=43338
This CL introduced the code:
http://trac.webkit.org/changeset/64196

Compile fix only, no new tests.

  • rendering/SVGResourcesCycleSolver.cpp: (WebCore::SVGResourcesCycleSolver::breakCycle):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r64464 r64465  
     12010-08-02  Kristian Monsen  <kristianm@google.com>
     2
     3        Reviewed by Steve Block.
     4
     5        Compile fix for Android, adding guards around filter specific code.
     6        https://bugs.webkit.org/show_bug.cgi?id=43338
     7        This CL introduced the code:
     8        http://trac.webkit.org/changeset/64196
     9
     10        Compile fix only, no new tests.
     11
     12        * rendering/SVGResourcesCycleSolver.cpp:
     13        (WebCore::SVGResourcesCycleSolver::breakCycle):
     14
    1152010-08-02  Kristian Monsen  <kristianm@google.com>
    216
  • trunk/WebCore/rendering/SVGResourcesCycleSolver.cpp

    r64440 r64465  
    194194        break;
    195195    case FilterResourceType:
     196#if ENABLE(FILTERS)
    196197        ASSERT(resourceLeadingToCycle == m_resources->filter());
    197198        m_resources->resetFilter();
     199#endif
    198200        break;
    199201    case ClipperResourceType:
Note: See TracChangeset for help on using the changeset viewer.