summaryrefslogtreecommitdiffstats
path: root/content/browser/browser_main_loop.h
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-17 23:07:15 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-17 23:07:15 +0000
commit2f3b1cce4c8d4d6a4b016f4d03fca5ee88348a2c (patch)
tree78766377b2779fe9b9afbc869a97f387b9b3d082 /content/browser/browser_main_loop.h
parent936e85963a6d11c79c7ea774bc41c8729c04693f (diff)
downloadchromium_src-2f3b1cce4c8d4d6a4b016f4d03fca5ee88348a2c.zip
chromium_src-2f3b1cce4c8d4d6a4b016f4d03fca5ee88348a2c.tar.gz
chromium_src-2f3b1cce4c8d4d6a4b016f4d03fca5ee88348a2c.tar.bz2
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
Diffstat (limited to 'content/browser/browser_main_loop.h')
-rw-r--r--content/browser/browser_main_loop.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/content/browser/browser_main_loop.h b/content/browser/browser_main_loop.h
index e04999b..8f8af82 100644
--- a/content/browser/browser_main_loop.h
+++ b/content/browser/browser_main_loop.h
@@ -11,9 +11,8 @@
#include "content/browser/browser_process_sub_thread.h"
#include "content/public/browser/browser_main_runner.h"
-class CommandLine;
-
namespace base {
+class CommandLine;
class FilePath;
class HighResolutionTimerManager;
class MessageLoop;
@@ -127,12 +126,12 @@ class CONTENT_EXPORT BrowserMainLoop {
void MainMessageLoopRun();
- void InitStartupTracing(const CommandLine& command_line);
+ void InitStartupTracing(const base::CommandLine& command_line);
void EndStartupTracing(const base::FilePath& trace_file);
// Members initialized on construction ---------------------------------------
const MainFunctionParams& parameters_;
- const CommandLine& parsed_command_line_;
+ const base::CommandLine& parsed_command_line_;
int result_code_;
// True if the non-UI threads were created.
bool created_threads_;