| Index: chrome/service/service_process.cc
|
| diff --git a/chrome/service/service_process.cc b/chrome/service/service_process.cc
|
| index 2cae3769a36893be11fc9908e543e81d04d1c553..32d5cc204fb8f5a3eb3ed5d9dd2096b0088147b9 100644
|
| --- a/chrome/service/service_process.cc
|
| +++ b/chrome/service/service_process.cc
|
| @@ -175,7 +175,8 @@ bool ServiceProcess::Initialize(MessageLoopForUI* message_loop,
|
| } else {
|
| // If no command-line value was specified, read the last used locale from
|
| // the prefs.
|
| - locale = service_prefs_->GetString(prefs::kApplicationLocale, "");
|
| + locale =
|
| + service_prefs_->GetString(prefs::kApplicationLocale, std::string());
|
| // If no locale was specified anywhere, use the default one.
|
| if (locale.empty())
|
| locale = kDefaultServiceProcessLocale;
|
|
|