Bug 1151840 - Make a couple of messages urgent to deal with CPOWs properly. r=billm

This commit is contained in:
Blake Kaplan 2015-06-11 18:53:31 -07:00
parent 3b92846afa
commit 94ea21554a
2 changed files with 3 additions and 3 deletions

View File

@ -758,7 +758,7 @@ parent:
PSpeechSynthesis();
PStorage();
prio(urgent) async PStorage();
PTelephony();

View File

@ -12,14 +12,14 @@ namespace dom {
/* This protocol bridges async access to the database thread running on the parent process
* and caches running on the child process.
*/
sync protocol PStorage
prio(normal upto urgent) sync protocol PStorage
{
manager PContent;
parent:
async __delete__();
sync Preload(nsCString scope, uint32_t alreadyLoadedCount)
prio(urgent) sync Preload(nsCString scope, uint32_t alreadyLoadedCount)
returns (nsString[] keys, nsString[] values, nsresult rv);
async AsyncPreload(nsCString scope, bool priority);