| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "net/test/local_sync_test_server.h" | 5 #include "net/test/local_sync_test_server.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/string_number_conversions.h" | 8 #include "base/string_number_conversions.h" |
| 9 #include "base/values.h" | 9 #include "base/values.h" |
| 10 #include "net/test/test_server.h" | 10 #include "net/test/test_server.h" |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 net::TestServer::kLocalhost, | 22 net::TestServer::kLocalhost, |
| 23 FilePath()), | 23 FilePath()), |
| 24 xmpp_port_(xmpp_port) { | 24 xmpp_port_(xmpp_port) { |
| 25 SetPort(port); | 25 SetPort(port); |
| 26 } | 26 } |
| 27 | 27 |
| 28 LocalSyncTestServer::~LocalSyncTestServer() {} | 28 LocalSyncTestServer::~LocalSyncTestServer() {} |
| 29 | 29 |
| 30 bool LocalSyncTestServer::AddCommandLineArguments( | 30 bool LocalSyncTestServer::AddCommandLineArguments( |
| 31 CommandLine* command_line) const { | 31 CommandLine* command_line) const { |
| 32 LocalTestServer::AddCommandLineArguments(command_line); | 32 if (!LocalTestServer::AddCommandLineArguments(command_line)) |
| 33 return false; |
| 33 if (xmpp_port_ != 0) { | 34 if (xmpp_port_ != 0) { |
| 34 std::string xmpp_port_str = base::IntToString(xmpp_port_); | 35 std::string xmpp_port_str = base::IntToString(xmpp_port_); |
| 35 command_line->AppendArg("--xmpp-port=" + xmpp_port_str); | 36 command_line->AppendArg("--xmpp-port=" + xmpp_port_str); |
| 36 } | 37 } |
| 37 return true; | 38 return true; |
| 38 } | 39 } |
| 39 | 40 |
| 40 } // namespace net | 41 } // namespace net |
| OLD | NEW |