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

Unified Diff: chrome/browser/ui/extensions/app_launch_params.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
« no previous file with comments | « chrome/browser/ui/cocoa/view_id_util_browsertest.mm ('k') | chrome/browser/ui/libgtk2ui/gtk2_ui.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/extensions/app_launch_params.cc
diff --git a/chrome/browser/ui/extensions/app_launch_params.cc b/chrome/browser/ui/extensions/app_launch_params.cc
index 883ce4710e3519cbdf23fefaa239008e198ba795..80dab730223928003e4ac3a77f839fa98226c5bc 100644
--- a/chrome/browser/ui/extensions/app_launch_params.cc
+++ b/chrome/browser/ui/extensions/app_launch_params.cc
@@ -25,7 +25,7 @@ AppLaunchParams::AppLaunchParams(Profile* profile,
desktop_type(chrome::GetActiveDesktop()),
override_url(),
override_bounds(),
- command_line(CommandLine::NO_PROGRAM),
+ command_line(base::CommandLine::NO_PROGRAM),
source(source) {
}
@@ -40,7 +40,7 @@ AppLaunchParams::AppLaunchParams(Profile* profile,
desktop_type(chrome::GetActiveDesktop()),
override_url(),
override_bounds(),
- command_line(CommandLine::NO_PROGRAM),
+ command_line(base::CommandLine::NO_PROGRAM),
source(source) {
// Look up the app preference to find out the right launch container. Default
// is to launch as a regular tab.
@@ -59,7 +59,7 @@ AppLaunchParams::AppLaunchParams(Profile* profile,
desktop_type(desktop_type),
override_url(),
override_bounds(),
- command_line(CommandLine::NO_PROGRAM),
+ command_line(base::CommandLine::NO_PROGRAM),
source(source) {
if (raw_disposition == NEW_FOREGROUND_TAB ||
raw_disposition == NEW_BACKGROUND_TAB) {
« no previous file with comments | « chrome/browser/ui/cocoa/view_id_util_browsertest.mm ('k') | chrome/browser/ui/libgtk2ui/gtk2_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698