зеркало из https://github.com/mozilla/gecko-dev.git
Backed out changeset bcb4ebf6ffac (bug 1198459) for bustage
This commit is contained in:
Родитель
7265490919
Коммит
8431613ae5
|
@ -39,6 +39,26 @@ public:
|
|||
*/
|
||||
static bool IsDolphin() { return !!(sConsumers & DOLPHIN); }
|
||||
|
||||
/**
|
||||
* Return true if we should disable e10s due to a detected
|
||||
* accessibility client.
|
||||
*/
|
||||
static bool IsBlacklistedForE10S()
|
||||
{
|
||||
// We currently blacklist everything except UNKNOWN and UIAUTOMATION
|
||||
return !!(sConsumers &
|
||||
(NVDA |
|
||||
JAWS |
|
||||
OLDJAWS |
|
||||
WE |
|
||||
DOLPHIN |
|
||||
SEROTEK |
|
||||
COBRA |
|
||||
ZOOMTEXT |
|
||||
KAZAGURU |
|
||||
YOUDAO));
|
||||
}
|
||||
|
||||
private:
|
||||
Compatibility();
|
||||
Compatibility(const Compatibility&);
|
||||
|
|
|
@ -271,11 +271,6 @@ using namespace mozilla::system;
|
|||
|
||||
static NS_DEFINE_CID(kCClipboardCID, NS_CLIPBOARD_CID);
|
||||
|
||||
#if defined(XP_WIN)
|
||||
// e10s forced enable pref, defined in nsAppRunner.cpp
|
||||
extern const char* kForceEnableE10sPref;
|
||||
#endif
|
||||
|
||||
using base::ChildPrivileges;
|
||||
using base::KillProcess;
|
||||
#ifdef MOZ_ENABLE_PROFILER_SPS
|
||||
|
@ -1560,15 +1555,7 @@ ContentParent::Init()
|
|||
// If accessibility is running in chrome process then start it in content
|
||||
// process.
|
||||
if (nsIPresShell::IsAccessibilityActive()) {
|
||||
#if !defined(XP_WIN)
|
||||
Unused << SendActivateA11y();
|
||||
#else
|
||||
// On Windows we currently only enable a11y in the content process
|
||||
// for testing purposes.
|
||||
if (Preferences::GetBool(kForceEnableE10sPref, false)) {
|
||||
Unused << SendActivateA11y();
|
||||
}
|
||||
#endif
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -3347,15 +3334,7 @@ ContentParent::Observe(nsISupports* aSubject,
|
|||
// gets initiated in chrome process.
|
||||
else if (aData && (*aData == '1') &&
|
||||
!strcmp(aTopic, "a11y-init-or-shutdown")) {
|
||||
#if !defined(XP_WIN)
|
||||
Unused << SendActivateA11y();
|
||||
#else
|
||||
// On Windows we currently only enable a11y in the content process
|
||||
// for testing purposes.
|
||||
if (Preferences::GetBool(kForceEnableE10sPref, false)) {
|
||||
Unused << SendActivateA11y();
|
||||
}
|
||||
#endif
|
||||
}
|
||||
#endif
|
||||
else if (!strcmp(aTopic, "app-theme-changed")) {
|
||||
|
|
|
@ -1023,6 +1023,24 @@ nsXULAppInfo::GetAccessibilityEnabled(bool* aResult)
|
|||
return NS_OK;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsXULAppInfo::GetAccessibilityIsBlacklistedForE10S(bool* aResult)
|
||||
{
|
||||
*aResult = false;
|
||||
#if defined(ACCESSIBILITY)
|
||||
#if defined(XP_WIN)
|
||||
if (GetAccService() && mozilla::a11y::Compatibility::IsBlacklistedForE10S()) {
|
||||
*aResult = true;
|
||||
}
|
||||
#elif defined(XP_MACOSX)
|
||||
if (GetAccService()) {
|
||||
*aResult = true;
|
||||
}
|
||||
#endif
|
||||
#endif // defined(ACCESSIBILITY)
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsXULAppInfo::GetIs64Bit(bool* aResult)
|
||||
{
|
||||
|
|
|
@ -23,7 +23,7 @@ bool BrowserTabsRemoteAutostart();
|
|||
* stable/frozen, please contact Benjamin Smedberg.
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a1b2e167-b748-42bf-ba85-996ec39062b9)]
|
||||
[scriptable, uuid(ce9d05f4-0c20-4f52-87e1-3a425e61e2f3)]
|
||||
interface nsIXULRuntime : nsISupports
|
||||
{
|
||||
/**
|
||||
|
@ -96,6 +96,12 @@ interface nsIXULRuntime : nsISupports
|
|||
*/
|
||||
readonly attribute boolean accessibilityEnabled;
|
||||
|
||||
/**
|
||||
* Indicates if the active accessibility client is blacklisted for e10s.
|
||||
* DO NOT USE! This is temporary and will be removed.
|
||||
*/
|
||||
readonly attribute boolean accessibilityIsBlacklistedForE10S;
|
||||
|
||||
/**
|
||||
* Indicates whether the current Firefox build is 64-bit.
|
||||
*/
|
||||
|
|
Загрузка…
Ссылка в новой задаче