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

Unified Diff: chrome/browser/extensions/test_extension_system.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/extensions/test_extension_system.cc
diff --git a/chrome/browser/extensions/test_extension_system.cc b/chrome/browser/extensions/test_extension_system.cc
index 7a383fdb3e19eb7490cfe062d20607d7bbaaa8be..2897549399b19d5a097c732506f652bfb120cae2 100644
--- a/chrome/browser/extensions/test_extension_system.cc
+++ b/chrome/browser/extensions/test_extension_system.cc
@@ -51,7 +51,7 @@ void TestExtensionSystem::Shutdown() {
}
ExtensionPrefs* TestExtensionSystem::CreateExtensionPrefs(
- const CommandLine* command_line,
+ const base::CommandLine* command_line,
const base::FilePath& install_directory) {
bool extensions_disabled =
command_line && command_line->HasSwitch(switches::kDisableExtensions);
@@ -75,7 +75,7 @@ ExtensionPrefs* TestExtensionSystem::CreateExtensionPrefs(
}
ExtensionService* TestExtensionSystem::CreateExtensionService(
- const CommandLine* command_line,
+ const base::CommandLine* command_line,
const base::FilePath& install_directory,
bool autoupdate_enabled) {
if (!ExtensionPrefs::Get(profile_))

Powered by Google App Engine
This is Rietveld 408576698