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

Unified Diff: chrome/browser/prefs/proxy_policy_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/prefs/proxy_policy_unittest.cc
diff --git a/chrome/browser/prefs/proxy_policy_unittest.cc b/chrome/browser/prefs/proxy_policy_unittest.cc
index 7e20c33d30e755bb5ac528b7c5fd96c0e8242b8c..b7a5213f4b17c28ddb4529553eb3b073f76f4a3b 100644
--- a/chrome/browser/prefs/proxy_policy_unittest.cc
+++ b/chrome/browser/prefs/proxy_policy_unittest.cc
@@ -81,8 +81,7 @@ void assertProxyModeWithoutParams(const ProxyConfigDictionary& dict,
class ProxyPolicyTest : public testing::Test {
protected:
- ProxyPolicyTest()
- : command_line_(CommandLine::NO_PROGRAM) {}
+ ProxyPolicyTest() : command_line_(base::CommandLine::NO_PROGRAM) {}
void SetUp() override {
EXPECT_CALL(provider_, IsInitializationComplete(_))
@@ -110,7 +109,7 @@ class ProxyPolicyTest : public testing::Test {
}
base::MessageLoop loop_;
- CommandLine command_line_;
+ base::CommandLine command_line_;
MockConfigurationPolicyProvider provider_;
scoped_ptr<PolicyServiceImpl> policy_service_;
};
« no previous file with comments | « chrome/browser/prefs/pref_service_syncable_factory.cc ('k') | chrome/browser/prefs/tracked/pref_hash_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698