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

Unified Diff: chrome/browser/extensions/external_pref_loader.h

Issue 650763003: Delay default apps installation on Chrome OS for first time sign-in (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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/extensions/external_pref_loader.h
diff --git a/chrome/browser/extensions/external_pref_loader.h b/chrome/browser/extensions/external_pref_loader.h
index 96e4f5723e365ea3e2640a15c3a63561c37363be..b6ebd77ca947599330bf2c165cf8de305cb0841c 100644
--- a/chrome/browser/extensions/external_pref_loader.h
+++ b/chrome/browser/extensions/external_pref_loader.h
@@ -27,7 +27,11 @@ class ExternalPrefLoader : public ExternalLoader {
// Ensure that only root can force an external install by checking
// that all components of the path to external extensions files are
// owned by root and not writable by any non-root user.
- ENSURE_PATH_CONTROLLED_BY_ADMIN = 1 << 0
+ ENSURE_PATH_CONTROLLED_BY_ADMIN = 1 << 0,
+
+ // Delay external preference load. It delays default apps installation
+ // to don't overload system on first time user login.
asargent_no_longer_on_chrome 2014/10/23 22:34:35 grammar nit: should be "... to not overload the sy
Dmitry Polukhin 2014/10/24 11:40:42 Done.
+ DELAY_LOAD = 1 << 1,
};
// |base_path_id| is the directory containing the external_extensions.json
« no previous file with comments | « no previous file | chrome/browser/extensions/external_pref_loader.cc » ('j') | chrome/browser/extensions/external_pref_loader.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698