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

Unified Diff: chrome/browser/ui/views/profiles/profile_chooser_view_browsertest.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/views/profiles/profile_chooser_view_browsertest.cc
diff --git a/chrome/browser/ui/views/profiles/profile_chooser_view_browsertest.cc b/chrome/browser/ui/views/profiles/profile_chooser_view_browsertest.cc
index a4012e1663b6891a8ad62bf84247479e664562e0..4d72949b0013f45ad37857274a47b72e8449b1d5 100644
--- a/chrome/browser/ui/views/profiles/profile_chooser_view_browsertest.cc
+++ b/chrome/browser/ui/views/profiles/profile_chooser_view_browsertest.cc
@@ -36,7 +36,7 @@ class ProfileChooserViewBrowserTest : public InProcessBrowserTest {
protected:
void SetUp() override;
- void SetUpCommandLine(CommandLine* command_line) override;
+ void SetUpCommandLine(base::CommandLine* command_line) override;
void OpenProfileChooserView();
private:
@@ -55,8 +55,9 @@ void ProfileChooserViewBrowserTest::SetUp() {
}
void ProfileChooserViewBrowserTest::SetUpCommandLine(
- CommandLine* command_line) {
- switches::EnableNewAvatarMenuForTesting(CommandLine::ForCurrentProcess());
+ base::CommandLine* command_line) {
+ switches::EnableNewAvatarMenuForTesting(
+ base::CommandLine::ForCurrentProcess());
}
void ProfileChooserViewBrowserTest::OpenProfileChooserView() {

Powered by Google App Engine
This is Rietveld 408576698