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

Unified Diff: chrome/browser/ui/sync/sync_promo_ui_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/sync/sync_promo_ui_unittest.cc
diff --git a/chrome/browser/ui/sync/sync_promo_ui_unittest.cc b/chrome/browser/ui/sync/sync_promo_ui_unittest.cc
index 15673d6100fd1bd4e914f3185af61730ce6ed5a5..e19b22c555fc7e767cf4fe4db7a97f3a6d9e96fc 100644
--- a/chrome/browser/ui/sync/sync_promo_ui_unittest.cc
+++ b/chrome/browser/ui/sync/sync_promo_ui_unittest.cc
@@ -29,7 +29,8 @@ class SyncPromoUITest : public testing::Test {
protected:
void DisableSync() {
- CommandLine::ForCurrentProcess()->AppendSwitch(switches::kDisableSync);
+ base::CommandLine::ForCurrentProcess()->AppendSwitch(
+ switches::kDisableSync);
}
scoped_ptr<TestingProfile> profile_;

Powered by Google App Engine
This is Rietveld 408576698