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

Unified Diff: chrome/browser/ui/views/profiles/new_avatar_menu_button_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/new_avatar_menu_button_browsertest.cc
diff --git a/chrome/browser/ui/views/profiles/new_avatar_menu_button_browsertest.cc b/chrome/browser/ui/views/profiles/new_avatar_menu_button_browsertest.cc
index 1434b26c0e30ba5ddf2aba2ecf1c50f336585278..05918953f7ea8227a29bf7c9ba2bbd134905ee13 100644
--- a/chrome/browser/ui/views/profiles/new_avatar_menu_button_browsertest.cc
+++ b/chrome/browser/ui/views/profiles/new_avatar_menu_button_browsertest.cc
@@ -31,7 +31,7 @@ class NewAvatarMenuButtonTest : public InProcessBrowserTest {
protected:
void SetUp() override;
- void SetUpCommandLine(CommandLine* command_line) override;
+ void SetUpCommandLine(base::CommandLine* command_line) override;
void CreateTestingProfile();
void StartAvatarMenu();
@@ -50,7 +50,8 @@ void NewAvatarMenuButtonTest::SetUp() {
DCHECK(switches::IsNewAvatarMenu());
}
-void NewAvatarMenuButtonTest::SetUpCommandLine(CommandLine* command_line) {
+void NewAvatarMenuButtonTest::SetUpCommandLine(
+ base::CommandLine* command_line) {
switches::EnableNewAvatarMenuForTesting(command_line);
}

Powered by Google App Engine
This is Rietveld 408576698