WebKit Bugzilla
Attachment 371909 Details for
Bug 198777
: [GTK] Fix a11y support in bubblewrap sandbox
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-198777-20190611190121.patch (text/plain), 1.46 KB, created by
Patrick Griffis
on 2019-06-11 19:01:22 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Patrick Griffis
Created:
2019-06-11 19:01:22 PDT
Size:
1.46 KB
patch
obsolete
>Subversion Revision: 246338 >diff --git a/Source/WebKit/ChangeLog b/Source/WebKit/ChangeLog >index cadb9675658769f77bfae7c82b2afc2fbfabf664..772bf064a209852c936369459e0865bc59e463fb 100644 >--- a/Source/WebKit/ChangeLog >+++ b/Source/WebKit/ChangeLog >@@ -1,3 +1,13 @@ >+2019-06-11 Patrick Griffis <pgriffis@igalia.com> >+ >+ [GTK] Fix a11y support in bubblewrap sandbox >+ https://bugs.webkit.org/show_bug.cgi?id=198777 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * UIProcess/Launcher/glib/BubblewrapLauncher.cpp: >+ (WebKit::bindA11y): >+ > 2019-06-11 Michael Catanzaro <mcatanzaro@igalia.com> > > Unreviewed build warning fixes >diff --git a/Source/WebKit/UIProcess/Launcher/glib/BubblewrapLauncher.cpp b/Source/WebKit/UIProcess/Launcher/glib/BubblewrapLauncher.cpp >index 8b310bd7b88680061e9430a581564e4500d3888b..0ff8e6a302f413b3b74ed5f69c1b13ec0f2801c6 100644 >--- a/Source/WebKit/UIProcess/Launcher/glib/BubblewrapLauncher.cpp >+++ b/Source/WebKit/UIProcess/Launcher/glib/BubblewrapLauncher.cpp >@@ -441,8 +441,10 @@ static void bindA11y(Vector<CString>& args) > } > > if (proxy.proxyPath().data()) { >+ GUniquePtr<char> proxyAddress(g_strdup_printf("unix:path=%s", proxy.proxyPath().data())); > args.appendVector(Vector<CString>({ >- "--bind", proxy.proxyPath(), proxy.path(), >+ "--ro-bind", proxy.proxyPath(), proxy.proxyPath(), >+ "--setenv", "AT_SPI_BUS_ADDRESS", proxyAddress.get(), > })); > } > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 198777
: 371909