Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(981)

Unified Diff: chrome/browser/profiles/profile.cc

Issue 8245018: Remove race condition when installing default apps into a new profile. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Fix more trybot breaks Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/profiles/profile.cc
===================================================================
--- chrome/browser/profiles/profile.cc (revision 105797)
+++ chrome/browser/profiles/profile.cc (working copy)
@@ -179,6 +179,8 @@
PrefService::UNSYNCABLE_PREF);
prefs->RegisterDictionaryPref(prefs::kPerHostZoomLevels,
PrefService::UNSYNCABLE_PREF);
+ prefs->RegisterIntegerPref(prefs::kDefaultAppsInstallState, 0,
Mihai Parparita -not on Chrome 2011/10/19 07:31:36 Pref registration should also be done in DefaultAp
Roger Tawa OOO till Jul 10th 2011/10/19 20:48:25 Done.
+ PrefService::UNSYNCABLE_PREF);
prefs->RegisterStringPref(prefs::kDefaultApps,
"install",
PrefService::UNSYNCABLE_PREF);

Powered by Google App Engine
This is Rietveld 408576698