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

Unified Diff: chrome/test/testing_profile.cc

Issue 6852029: [Sync] Move some extension-sync-related logic to ExtensionService (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address asargent's comments Created 9 years, 8 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
« no previous file with comments | « chrome/test/testing_profile.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/testing_profile.cc
diff --git a/chrome/test/testing_profile.cc b/chrome/test/testing_profile.cc
index 09b91abe930d130dce24e7b7a4f140821b97d782..606bfcb65acbac1ace7b54227d67fd4ffe89b82d 100644
--- a/chrome/test/testing_profile.cc
+++ b/chrome/test/testing_profile.cc
@@ -345,7 +345,8 @@ void TestingProfile::SetTemplateURLModel(TemplateURLModel* model) {
ExtensionService* TestingProfile::CreateExtensionService(
const CommandLine* command_line,
- const FilePath& install_directory) {
+ const FilePath& install_directory,
+ bool autoupdate_enabled) {
// Extension pref store, created for use by |extension_prefs_|.
extension_pref_value_map_.reset(new ExtensionPrefValueMap);
@@ -361,7 +362,7 @@ ExtensionService* TestingProfile::CreateExtensionService(
command_line,
install_directory,
extension_prefs_.get(),
- false,
+ autoupdate_enabled,
true);
return extensions_service_;
}
« no previous file with comments | « chrome/test/testing_profile.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698