From 2f3b1cce4c8d4d6a4b016f4d03fca5ee88348a2c Mon Sep 17 00:00:00 2001 From: "brettw@chromium.org" Date: Mon, 17 Mar 2014 23:07:15 +0000 Subject: Move CommandLine to base namespace. Fix all forward-declares and header files referencing CommandLine. This keeps a "using base::CommandLine" in the command line header file so that the rest of the source files can be changes in a follow-up. TBR=sky Review URL: https://codereview.chromium.org/196413016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@257514 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/ui/extensions/application_launch.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'chrome/browser/ui/extensions/application_launch.h') diff --git a/chrome/browser/ui/extensions/application_launch.h b/chrome/browser/ui/extensions/application_launch.h index 280d549..e18211a 100644 --- a/chrome/browser/ui/extensions/application_launch.h +++ b/chrome/browser/ui/extensions/application_launch.h @@ -14,9 +14,12 @@ #include "url/gurl.h" class Browser; -class CommandLine; class Profile; +namespace base { +class CommandLine; +} + namespace content { class WebContents; } @@ -72,7 +75,7 @@ struct AppLaunchParams { // If non-empty, information from the command line may be passed on to the // application. - CommandLine command_line; + base::CommandLine command_line; // If non-empty, the current directory from which any relative paths on the // command line should be expanded from. -- cgit v1.1