diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-17 23:07:15 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-17 23:07:15 +0000 |
commit | 2f3b1cce4c8d4d6a4b016f4d03fca5ee88348a2c (patch) | |
tree | 78766377b2779fe9b9afbc869a97f387b9b3d082 /components/nacl/common | |
parent | 936e85963a6d11c79c7ea774bc41c8729c04693f (diff) | |
download | chromium_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 'components/nacl/common')
-rw-r--r-- | components/nacl/common/nacl_cmd_line.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/components/nacl/common/nacl_cmd_line.h b/components/nacl/common/nacl_cmd_line.h index 4e4e753..60f7f22 100644 --- a/components/nacl/common/nacl_cmd_line.h +++ b/components/nacl/common/nacl_cmd_line.h @@ -5,12 +5,16 @@ #ifndef COMPONENTS_NACL_COMMON_NACL_CMD_LINE_H_ #define COMPONENTS_NACL_COMMON_NACL_CMD_LINE_H_ +namespace base { class CommandLine; +} namespace nacl { - // Copy all the relevant arguments from the command line of the current - // process to cmd_line that will be used for launching the NaCl loader/broker. - void CopyNaClCommandLineArguments(CommandLine* cmd_line); -} + +// Copy all the relevant arguments from the command line of the current +// process to cmd_line that will be used for launching the NaCl loader/broker. +void CopyNaClCommandLineArguments(base::CommandLine* cmd_line); + +} // namespace nacl #endif // COMPONENTS_NACL_COMMON_NACL_CMD_LINE_H_ |