Skip to content

Commit

Permalink
Bug 1146557 P2 Flip dom.caches.enabled to true on non-release builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
rmottola committed Jun 27, 2019
1 parent b56ba80 commit b1ac387
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions modules/libpref/init/all.js
Expand Up @@ -4770,7 +4770,11 @@ pref("camera.control.face_detection.enabled", true);


// SW Cache API
#ifdef RELEASE_BUILD
pref("dom.caches.enabled", false);
#else
pref("dom.caches.enabled", true);
#endif // RELEASE_BUILD

#ifdef MOZ_WIDGET_GONK
// Empirically, this is the value returned by hal::GetTotalSystemMemory()
Expand Down

0 comments on commit b1ac387

Please sign in to comment.