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

Unified Diff: chrome/browser/ui/passwords/password_manager_presenter.cc

Issue 816403003: Make callers of CommandLine use it via the base:: namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 6 years 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
Index: chrome/browser/ui/passwords/password_manager_presenter.cc
diff --git a/chrome/browser/ui/passwords/password_manager_presenter.cc b/chrome/browser/ui/passwords/password_manager_presenter.cc
index 52d2eb80ef518a453732bff1da87088fde0da24f..b22aca2f87adbd1b84506c48c31bcd1faa134b02 100644
--- a/chrome/browser/ui/passwords/password_manager_presenter.cc
+++ b/chrome/browser/ui/passwords/password_manager_presenter.cc
@@ -30,8 +30,9 @@ PasswordManagerPresenter::PasswordManagerPresenter(
exception_populater_(this),
password_view_(password_view) {
DCHECK(password_view_);
- require_reauthentication_ = !CommandLine::ForCurrentProcess()->HasSwitch(
- switches::kDisablePasswordManagerReauthentication);
+ require_reauthentication_ =
+ !base::CommandLine::ForCurrentProcess()->HasSwitch(
+ switches::kDisablePasswordManagerReauthentication);
}
PasswordManagerPresenter::~PasswordManagerPresenter() {
« no previous file with comments | « chrome/browser/ui/panels/panel_manager.cc ('k') | chrome/browser/ui/search/instant_extended_interactive_uitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698