From 2e04a3a8ae1900de3818511976bb6869ba4f4955 Mon Sep 17 00:00:00 2001 From: Kathy Brade Date: Wed, 13 Apr 2016 11:34:59 -0400 Subject: [PATCH] Bug 18799: disable Network Tickler Ensure that the tickler is always stubbed out, even on Android (e.g., for Orfox). --- netwerk/base/Tickler.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/netwerk/base/Tickler.h b/netwerk/base/Tickler.h index 573fe6e76225e..890412674f985 100644 --- a/netwerk/base/Tickler.h +++ b/netwerk/base/Tickler.h @@ -27,9 +27,10 @@ // The tickler only applies to wifi on mobile right now. Hopefully it // can also be restricted to particular handset models in the future. -#if defined(ANDROID) && !defined(MOZ_B2G) -#define MOZ_USE_WIFI_TICKLER -#endif +// Avoid the tickler in all cases, e.g., in Orfox. +//#if defined(ANDROID) && !defined(MOZ_B2G) +//#define MOZ_USE_WIFI_TICKLER +//#endif #include "mozilla/Attributes.h" #include "nsISupports.h" -- GitLab