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 /chrome/browser/media/test_license_server_config.h | |
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 'chrome/browser/media/test_license_server_config.h')
-rw-r--r-- | chrome/browser/media/test_license_server_config.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/media/test_license_server_config.h b/chrome/browser/media/test_license_server_config.h index b25da78..e39c0e2 100644 --- a/chrome/browser/media/test_license_server_config.h +++ b/chrome/browser/media/test_license_server_config.h @@ -8,10 +8,10 @@ #include <string> #include "base/basictypes.h" -class CommandLine; namespace base { - class FilePath; +class CommandLine; +class FilePath; } // Class used to start a test license server. @@ -27,7 +27,7 @@ class TestLicenseServerConfig { // Returns true if it successfully sets the command line to run the license // server with needed args and switches. - virtual bool GetServerCommandLine(CommandLine* command_line) = 0; + virtual bool GetServerCommandLine(base::CommandLine* command_line) = 0; // Returns true if the server is supported on current platform. virtual bool IsPlatformSupported() = 0; |