| Index: chrome/browser/chrome_browser_main_linux.cc
|
| diff --git a/chrome/browser/chrome_browser_main_linux.cc b/chrome/browser/chrome_browser_main_linux.cc
|
| index fe95885568a4a860ace1878b2b45cba94c7adb65..16808f19c8499302ec4c3b464422847002efee66 100644
|
| --- a/chrome/browser/chrome_browser_main_linux.cc
|
| +++ b/chrome/browser/chrome_browser_main_linux.cc
|
| @@ -58,9 +58,10 @@ void ChromeBrowserMainPartsLinux::PreProfileInit() {
|
|
|
| #if !defined(OS_CHROMEOS)
|
| // Forward to os_crypt the flag to use a specific password store.
|
| - std::string password_store =
|
| - parsed_command_line().GetSwitchValueASCII(switches::kPasswordStore);
|
| - OSCrypt::SetStore(password_store);
|
| + OSCrypt::SetStore(
|
| + parsed_command_line().GetSwitchValueASCII(switches::kPasswordStore));
|
| + // Forward the product name
|
| + OSCrypt::SetProductName(l10n_util::GetStringUTF8(IDS_PRODUCT_NAME));
|
| #endif
|
|
|
| ChromeBrowserMainPartsPosix::PreProfileInit();
|
|
|