Index: chrome/browser/ui/startup/startup_browser_creator_impl.h |
diff --git a/chrome/browser/ui/startup/startup_browser_creator_impl.h b/chrome/browser/ui/startup/startup_browser_creator_impl.h |
index a5ae4585213a03685a731781f9b5d9cfd080eaae..b50c9c7f4cdbd9e83b35da45bacf3946b7e67a64 100644 |
--- a/chrome/browser/ui/startup/startup_browser_creator_impl.h |
+++ b/chrome/browser/ui/startup/startup_browser_creator_impl.h |
@@ -16,11 +16,11 @@ |
#include "url/gurl.h" |
class Browser; |
-class CommandLine; |
class Profile; |
class StartupBrowserCreator; |
namespace base { |
+class CommandLine; |
class FilePath; |
} |
@@ -45,10 +45,10 @@ class StartupBrowserCreatorImpl { |
// second one is always called when the browser starts even if it is not |
// the first run. |is_first_run| indicates that this is a new profile. |
StartupBrowserCreatorImpl(const base::FilePath& cur_dir, |
- const CommandLine& command_line, |
+ const base::CommandLine& command_line, |
chrome::startup::IsFirstRun is_first_run); |
StartupBrowserCreatorImpl(const base::FilePath& cur_dir, |
- const CommandLine& command_line, |
+ const base::CommandLine& command_line, |
StartupBrowserCreator* browser_creator, |
chrome::startup::IsFirstRun is_first_run); |
~StartupBrowserCreatorImpl(); |
@@ -159,7 +159,7 @@ class StartupBrowserCreatorImpl { |
const std::vector<GURL>& startup_urls); |
const base::FilePath cur_dir_; |
- const CommandLine& command_line_; |
+ const base::CommandLine& command_line_; |
Profile* profile_; |
StartupBrowserCreator* browser_creator_; |
bool is_first_run_; |