From 3ee373ddcf9ad19c018dd0583ec2f88da6cc7ad7 Mon Sep 17 00:00:00 2001 From: Bill McCloskey Date: Fri, 26 Jul 2013 14:26:31 -0700 Subject: [PATCH] Bug 891954 - Skip Necko IPC security checks for desktop Firefox (r=jduell) --- browser/app/profile/firefox.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js index a128c300f78..20785a8680c 100644 --- a/browser/app/profile/firefox.js +++ b/browser/app/profile/firefox.js @@ -1283,3 +1283,7 @@ pref("dom.debug.propagate_gesture_events_through_content", false); // The request URL of the GeoLocation backend. pref("geo.wifi.uri", "https://www.googleapis.com/geolocation/v1/geolocate?key=%GOOGLE_API_KEY%"); + +// Necko IPC security checks only needed for app isolation for cookies/cache/etc: +// currently irrelevant for desktop e10s +pref("network.disable.ipc.security", true);