| Index: chrome/browser/extensions/extensions_service.cc
|
| ===================================================================
|
| --- chrome/browser/extensions/extensions_service.cc (revision 31117)
|
| +++ chrome/browser/extensions/extensions_service.cc (working copy)
|
| @@ -101,8 +101,8 @@
|
| if (autoupdate_enabled) {
|
| int update_frequency = kDefaultUpdateFrequencySeconds;
|
| if (command_line->HasSwitch(switches::kExtensionsUpdateFrequency)) {
|
| - update_frequency = StringToInt(WideToASCII(command_line->GetSwitchValue(
|
| - switches::kExtensionsUpdateFrequency)));
|
| + update_frequency = StringToInt(command_line->GetSwitchValueASCII(
|
| + switches::kExtensionsUpdateFrequency));
|
| }
|
| updater_ = new ExtensionUpdater(this, prefs, update_frequency);
|
| }
|
|
|