Changeset 93391 in webkit


Ignore:
Timestamp:
Aug 19, 2011 1:58:27 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

Run-time error fix in WebKit-GTK with video support disabled.
https://bugs.webkit.org/show_bug.cgi?id=66541

Definition of the function extraFullScreenStyleSheet() in webkit-gtk
lies outside ENABLE(VIDEO) guard, resulting in runtime error while
trying to launch GtkLauncher with video support disabled.

Patch by Nayan Kumar K <nayankk@motorola.com> on 2011-08-19
Reviewed by Philippe Normand.

Run-time error fix. No test cases were added.

  • platform/gtk/RenderThemeGtk.h:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r93390 r93391  
     12011-08-19  Nayan Kumar K  <nayankk@motorola.com>
     2
     3        Run-time error fix in WebKit-GTK with video support disabled.
     4        https://bugs.webkit.org/show_bug.cgi?id=66541
     5
     6        Definition of the function extraFullScreenStyleSheet() in webkit-gtk
     7        lies outside ENABLE(VIDEO) guard, resulting in runtime error while
     8        trying to launch GtkLauncher with video support disabled.
     9
     10        Reviewed by Philippe Normand.
     11
     12        Run-time error fix. No test cases were added.
     13
     14        * platform/gtk/RenderThemeGtk.h:
     15
    1162011-08-19  Shinya Kawanaka  <shinyak@google.com>
    217
  • trunk/Source/WebCore/platform/gtk/RenderThemeGtk.h

    r92370 r93391  
    8686    virtual String extraMediaControlsStyleSheet();
    8787    virtual String formatMediaControlsCurrentTime(float currentTime, float duration) const;
    88 #endif
    8988
    9089#if ENABLE(FULLSCREEN_API)
    9190    virtual String extraFullScreenStyleSheet();
     91#endif
    9292#endif
    9393
Note: See TracChangeset for help on using the changeset viewer.