diff options
author | msarda@chromium.org <msarda@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-18 17:17:33 +0000 |
---|---|---|
committer | msarda@chromium.org <msarda@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-18 17:17:33 +0000 |
commit | afecfb73fdbca719e3a861b3255e68f2c3ef8780 (patch) | |
tree | d10462f24aae74062803c782ae05cfbf6819bd41 /chrome/browser/sync/test/integration/sync_test.cc | |
parent | ac68e24b25c6578e131ba420abeeebddfb7bca0c (diff) | |
download | chromium_src-afecfb73fdbca719e3a861b3255e68f2c3ef8780.zip chromium_src-afecfb73fdbca719e3a861b3255e68f2c3ef8780.tar.gz chromium_src-afecfb73fdbca719e3a861b3255e68f2c3ef8780.tar.bz2 |
Delay bookmarks load while the profile is loading.
This CL adds a new DeferredSequencedtaskRunner that queues up tasks
until a first call to Start is issued. It creates such a task runner for the
execution of bookmarks I/O operations. At profile creation, the bookmarks
task runner is stopped and its execution is started after the profile has
finished loading.
BUG=NONE
Review URL: https://chromiumcodereview.appspot.com/12952005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194956 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/sync/test/integration/sync_test.cc')
-rw-r--r-- | chrome/browser/sync/test/integration/sync_test.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/browser/sync/test/integration/sync_test.cc b/chrome/browser/sync/test/integration/sync_test.cc index fbe9500..d2facba 100644 --- a/chrome/browser/sync/test/integration/sync_test.cc +++ b/chrome/browser/sync/test/integration/sync_test.cc @@ -231,7 +231,9 @@ Profile* SyncTest::MakeProfile(const base::FilePath::StringType name) { Profile* profile = Profile::CreateProfile(path, NULL, Profile::CREATE_MODE_SYNCHRONOUS); - g_browser_process->profile_manager()->RegisterTestingProfile(profile, true); + g_browser_process->profile_manager()->RegisterTestingProfile(profile, + true, + true); return profile; } |