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

Unified Diff: chrome/browser/ui/views/frame/opaque_browser_frame_view_layout_unittest.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/frame/opaque_browser_frame_view_layout_unittest.cc
diff --git a/chrome/browser/ui/views/frame/opaque_browser_frame_view_layout_unittest.cc b/chrome/browser/ui/views/frame/opaque_browser_frame_view_layout_unittest.cc
index 51ae68c7ef3a96bc8d7ef7db0f24128732e0ca84..1d0f219a09bdd0966bd8ae6cf4e21f33053b0fea 100644
--- a/chrome/browser/ui/views/frame/opaque_browser_frame_view_layout_unittest.cc
+++ b/chrome/browser/ui/views/frame/opaque_browser_frame_view_layout_unittest.cc
@@ -202,7 +202,8 @@ class OpaqueBrowserFrameViewLayoutTest : public views::ViewsTestBase {
void AddAvatarButton() {
// Disable the New Avatar Menu.
- switches::DisableNewAvatarMenuForTesting(CommandLine::ForCurrentProcess());
+ switches::DisableNewAvatarMenuForTesting(
+ base::CommandLine::ForCurrentProcess());
menu_button_ = new AvatarMenuButton(nullptr, false);
menu_button_->set_id(VIEW_ID_AVATAR_BUTTON);
@@ -223,7 +224,8 @@ class OpaqueBrowserFrameViewLayoutTest : public views::ViewsTestBase {
void AddNewAvatarButton() {
// Enable the New Avatar Menu.
- switches::EnableNewAvatarMenuForTesting(CommandLine::ForCurrentProcess());
+ switches::EnableNewAvatarMenuForTesting(
+ base::CommandLine::ForCurrentProcess());
new_avatar_button_ =
new views::MenuButton(nullptr, base::string16(), nullptr, false);

Powered by Google App Engine
This is Rietveld 408576698