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

Unified Diff: chrome/browser/chrome_browser_main_linux.cc

Issue 2150543002: OSCrypt supports encryption with KWallet (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: feedback Created 4 years, 5 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 | « no previous file | components/components_tests.gyp » ('j') | components/os_crypt/key_storage_linux.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
« no previous file with comments | « no previous file | components/components_tests.gyp » ('j') | components/os_crypt/key_storage_linux.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698