Changeset 220995 in webkit


Ignore:
Timestamp:
Aug 21, 2017 6:14:15 PM (7 years ago)
Author:
Adrian Perez de Castro
Message:

[WPE][GTK] Unused variables in UserMediaProcessManager.cpp
https://bugs.webkit.org/show_bug.cgi?id=175799

Reviewed by Alex Christensen.

The code which uses the "audioExtensionPath" and "videoExtensionPath" variables is guarded
with "#if ENABLE(SANDBOX_EXTENSIONS)”, so do the same for the variables themselves.

  • UIProcess/UserMediaProcessManager.cpp: Add missing guards.
Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r220979 r220995  
     12017-08-21  Adrian Perez de Castro  <aperez@igalia.com>
     2
     3        [WPE][GTK] Unused variables in UserMediaProcessManager.cpp
     4        https://bugs.webkit.org/show_bug.cgi?id=175799
     5
     6        Reviewed by Alex Christensen.
     7
     8        The code which uses the "audioExtensionPath" and "videoExtensionPath" variables is guarded
     9        with "#if ENABLE(SANDBOX_EXTENSIONS)”, so do the same for the variables themselves.
     10
     11        * UIProcess/UserMediaProcessManager.cpp: Add missing guards.
     12
    1132017-08-21  Yoshiaki Jitsukawa  <Yoshiaki.Jitsukawa@sony.com>
    214
  • trunk/Source/WebKit/UIProcess/UserMediaProcessManager.cpp

    r219331 r220995  
    3131namespace WebKit {
    3232
     33#if ENABLE(SANDBOX_EXTENSIONS)
    3334static const char* const audioExtensionPath = "com.apple.webkit.microphone";
    3435static const char* const videoExtensionPath = "com.apple.webkit.camera";
     36#endif
    3537
    3638class ProcessState {
Note: See TracChangeset for help on using the changeset viewer.