summaryrefslogtreecommitdiffstats
path: root/sync
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 /sync
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 'sync')
-rw-r--r--sync/test/local_sync_test_server.cc2
-rw-r--r--sync/test/local_sync_test_server.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/sync/test/local_sync_test_server.cc b/sync/test/local_sync_test_server.cc
index ede4b77..e8a1096 100644
--- a/sync/test/local_sync_test_server.cc
+++ b/sync/test/local_sync_test_server.cc
@@ -32,7 +32,7 @@ LocalSyncTestServer::LocalSyncTestServer(uint16 port, uint16 xmpp_port)
LocalSyncTestServer::~LocalSyncTestServer() {}
bool LocalSyncTestServer::AddCommandLineArguments(
- CommandLine* command_line) const {
+ base::CommandLine* command_line) const {
if (!LocalTestServer::AddCommandLineArguments(command_line))
return false;
if (xmpp_port_ != 0) {
diff --git a/sync/test/local_sync_test_server.h b/sync/test/local_sync_test_server.h
index 3cd9e55..5d1e5ca 100644
--- a/sync/test/local_sync_test_server.h
+++ b/sync/test/local_sync_test_server.h
@@ -27,7 +27,7 @@ class LocalSyncTestServer : public net::LocalTestServer {
// Overriden from net::LocalTestServer.
virtual bool AddCommandLineArguments(
- CommandLine* command_line) const OVERRIDE;
+ base::CommandLine* command_line) const OVERRIDE;
virtual bool SetPythonPath() const OVERRIDE;
virtual bool GetTestServerPath(
base::FilePath* testserver_path) const OVERRIDE;