Changeset 139001 in webkit


Ignore:
Timestamp:
Jan 7, 2013 3:29:12 PM (11 years ago)
Author:
mkwst@chromium.org
Message:

[qt] Fix ENABLE_IFRAME_SEAMLESS=0 builds.
https://bugs.webkit.org/show_bug.cgi?id=106252

Reviewed by Eric Seidel.

Wrap the call to setSeamlessIFramesEnabled in an ifdef in order
to ensure that it's only called when IFRAME_SEAMLESS is enabled.

  • WebCoreSupport/DumpRenderTreeSupportQt.cpp:

(DumpRenderTreeSupportQt::setSeamlessIFramesEnabled):

Location:
trunk/Source/WebKit/qt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/qt/ChangeLog

    r138983 r139001  
     12013-01-07  Mike West  <mkwst@chromium.org>
     2
     3        [qt] Fix ENABLE_IFRAME_SEAMLESS=0 builds.
     4        https://bugs.webkit.org/show_bug.cgi?id=106252
     5
     6        Reviewed by Eric Seidel.
     7
     8        Wrap the call to setSeamlessIFramesEnabled in an ifdef in order
     9        to ensure that it's only called when IFRAME_SEAMLESS is enabled.
     10
     11        * WebCoreSupport/DumpRenderTreeSupportQt.cpp:
     12        (DumpRenderTreeSupportQt::setSeamlessIFramesEnabled):
     13
    1142013-01-07  Mike West  <mkwst@chromium.org>
    215
  • trunk/Source/WebKit/qt/WebCoreSupport/DumpRenderTreeSupportQt.cpp

    r138983 r139001  
    10531053void DumpRenderTreeSupportQt::setSeamlessIFramesEnabled(bool enabled)
    10541054{
     1055#if ENABLE(IFRAME_SEAMLESS)
    10551056    WebCore::RuntimeEnabledFeatures::setSeamlessIFramesEnabled(enabled);
     1057#else
     1058    UNUSED_PARAM(enabled);
     1059#endif
    10561060}
    10571061
Note: See TracChangeset for help on using the changeset viewer.