mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
bug 417732: fix delay and disk activity when full/text zooming by turning PRAGMA SYNCHRONOUS off for the content prefs database; r=mconnor, a=shaver
This commit is contained in:
parent
7af4aefafc
commit
d7a9815ea6
@ -83,6 +83,15 @@ ContentPrefService.prototype = {
|
||||
return this.__consoleSvc;
|
||||
},
|
||||
|
||||
// Preferences Service
|
||||
__prefSvc: null,
|
||||
get _prefSvc ContentPrefService_get__prefSvc() {
|
||||
if (!this.__prefSvc)
|
||||
this.__prefSvc = Cc["@mozilla.org/preferences-service;1"].
|
||||
getService(Ci.nsIPrefBranch2);
|
||||
return this.__prefSvc;
|
||||
},
|
||||
|
||||
|
||||
//**************************************************************************//
|
||||
// Destruction
|
||||
@ -721,6 +730,21 @@ ContentPrefService.prototype = {
|
||||
}
|
||||
}
|
||||
|
||||
// Turn off disk synchronization checking to reduce disk churn and speed up
|
||||
// operations when prefs are changed rapidly (such as when a user repeatedly
|
||||
// changes the value of the browser zoom setting for a site).
|
||||
//
|
||||
// Note: this could cause database corruption if the OS crashes or machine
|
||||
// loses power before the data gets written to disk, but this is considered
|
||||
// a reasonable risk for the not-so-critical data stored in this database.
|
||||
//
|
||||
// If you really don't want to take this risk, however, just set the
|
||||
// toolkit.storage.synchronous pref to 1 (NORMAL synchronization) or 2
|
||||
// (FULL synchronization), in which case mozStorageConnection::Initialize
|
||||
// will use that value, and we won't override it here.
|
||||
if (!this._prefSvc.prefHasUserValue("toolkit.storage.synchronous"))
|
||||
dbConnection.executeSimpleSQL("PRAGMA synchronous = OFF");
|
||||
|
||||
this._dbConnection = dbConnection;
|
||||
},
|
||||
|
||||
|
@ -140,6 +140,10 @@ function run_test() {
|
||||
|
||||
var uri = ContentPrefTest.getURI("http://www.example.com/");
|
||||
|
||||
// Make sure disk synchronization checking is turned off by default.
|
||||
var statement = cps.DBConnection.createStatement("PRAGMA synchronous");
|
||||
statement.executeStep();
|
||||
do_check_eq(0, statement.getInt32(0));
|
||||
|
||||
//**************************************************************************//
|
||||
// Nonexistent Pref
|
||||
|
Loading…
Reference in New Issue
Block a user