Changeset 246344 in webkit


Ignore:
Timestamp:
Jun 11, 2019 7:50:48 PM (5 years ago)
Author:
commit-queue@webkit.org
Message:

[GTK] Fix a11y support in bubblewrap sandbox
https://bugs.webkit.org/show_bug.cgi?id=198777

Patch by Patrick Griffis <Patrick Griffis> on 2019-06-11
Reviewed by Michael Catanzaro.

  • UIProcess/Launcher/glib/BubblewrapLauncher.cpp:

(WebKit::bindA11y):

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r246343 r246344  
     12019-06-11  Patrick Griffis  <pgriffis@igalia.com>
     2
     3        [GTK] Fix a11y support in bubblewrap sandbox
     4        https://bugs.webkit.org/show_bug.cgi?id=198777
     5
     6        Reviewed by Michael Catanzaro.
     7
     8        * UIProcess/Launcher/glib/BubblewrapLauncher.cpp:
     9        (WebKit::bindA11y):
     10
    1112019-06-11  Timothy Hatcher  <timothy@apple.com>
    212
  • trunk/Source/WebKit/UIProcess/Launcher/glib/BubblewrapLauncher.cpp

    r243708 r246344  
    442442
    443443    if (proxy.proxyPath().data()) {
     444        GUniquePtr<char> proxyAddress(g_strdup_printf("unix:path=%s", proxy.proxyPath().data()));
    444445        args.appendVector(Vector<CString>({
    445             "--bind", proxy.proxyPath(), proxy.path(),
     446            "--ro-bind", proxy.proxyPath(), proxy.proxyPath(),
     447            "--setenv", "AT_SPI_BUS_ADDRESS", proxyAddress.get(),
    446448        }));
    447449    }
Note: See TracChangeset for help on using the changeset viewer.