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

Unified Diff: chrome/browser/background/background_contents_service_unittest.cc

Issue 819133004: 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/background/background_contents_service_unittest.cc
diff --git a/chrome/browser/background/background_contents_service_unittest.cc b/chrome/browser/background/background_contents_service_unittest.cc
index c0fc95498e8a38a5f2352cb742c7e6b5cf76fec3..4b23a0d18ef98aa9a9c14d29b2ec2b91942bef52 100644
--- a/chrome/browser/background/background_contents_service_unittest.cc
+++ b/chrome/browser/background/background_contents_service_unittest.cc
@@ -43,7 +43,7 @@ class BackgroundContentsServiceTest : public testing::Test {
BackgroundContentsServiceTest() {}
~BackgroundContentsServiceTest() override {}
void SetUp() override {
- command_line_.reset(new CommandLine(CommandLine::NO_PROGRAM));
+ command_line_.reset(new base::CommandLine(base::CommandLine::NO_PROGRAM));
}
const base::DictionaryValue* GetPrefs(Profile* profile) {
@@ -62,7 +62,7 @@ class BackgroundContentsServiceTest : public testing::Test {
return url;
}
- scoped_ptr<CommandLine> command_line_;
+ scoped_ptr<base::CommandLine> command_line_;
};
class MockBackgroundContents : public BackgroundContents {
« no previous file with comments | « chrome/browser/background/background_contents_service_factory.cc ('k') | chrome/browser/background/background_mode_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698