Changeset 191618 in webkit


Ignore:
Timestamp:
Oct 26, 2015 10:15:50 PM (8 years ago)
Author:
commit-queue@webkit.org
Message:

[GTK] [Stable] InstallMissingMediaPluginsPermissionRequest not defined when building without GStreamer
https://bugs.webkit.org/show_bug.cgi?id=148607

Unreviewed, build fix.

Patch by Philip Chimento <philip.chimento@gmail.com> on 2015-10-26

  • UIProcess/gstreamer/InstallMissingMediaPluginsPermissionRequest.h:

Add a stub for the InstallMissingMediaPluginsPermissionRequest class
for the case when video is disabled or not using GStreamer. It's OK
that this class does nothing, because the associated C API contains
an assert_not_reached if video is disabled. We just need to define
the symbol so that the function signature will compile.

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r191607 r191618  
     12015-10-26  Philip Chimento  <philip.chimento@gmail.com>
     2
     3        [GTK] [Stable] InstallMissingMediaPluginsPermissionRequest not defined when building without GStreamer
     4        https://bugs.webkit.org/show_bug.cgi?id=148607
     5
     6        Unreviewed, build fix.
     7
     8        * UIProcess/gstreamer/InstallMissingMediaPluginsPermissionRequest.h:
     9        Add a stub for the InstallMissingMediaPluginsPermissionRequest class
     10        for the case when video is disabled or not using GStreamer. It's OK
     11        that this class does nothing, because the associated C API contains
     12        an assert_not_reached if video is disabled. We just need to define
     13        the symbol so that the function signature will compile.
     14
    1152015-10-26  Anders Carlsson  <andersca@apple.com>
    216
  • trunk/Source/WebKit2/UIProcess/gstreamer/InstallMissingMediaPluginsPermissionRequest.h

    r188121 r191618  
    6464} // namespace WebKit
    6565
     66#else
     67
     68namespace WebKit {
     69class InstallMissingMediaPluginsPermissionRequest;
     70} // namespace WebKit
     71
    6672#endif // ENABLE(VIDEO) && USE(GSTREAMER)
    6773#endif // InstallMissingMediaPluginsPermissionRequest_h
Note: See TracChangeset for help on using the changeset viewer.