| Index: chrome/test/testing_profile.cc
|
| diff --git a/chrome/test/testing_profile.cc b/chrome/test/testing_profile.cc
|
| index cab23da9f53d779854510a576988a1c9bc4c7bc8..48a519808dbe83c58e100c5698035ffb2a0f04d5 100644
|
| --- a/chrome/test/testing_profile.cc
|
| +++ b/chrome/test/testing_profile.cc
|
| @@ -341,7 +341,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);
|
| @@ -357,7 +358,7 @@ ExtensionService* TestingProfile::CreateExtensionService(
|
| command_line,
|
| install_directory,
|
| extension_prefs_.get(),
|
| - false);
|
| + autoupdate_enabled);
|
| return extensions_service_;
|
| }
|
|
|
|
|