| 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 // This is an application of a minimal host process in a Chromoting | 5 // This is an application of a minimal host process in a Chromoting |
| 6 // system. It serves the purpose of gluing different pieces together | 6 // system. It serves the purpose of gluing different pieces together |
| 7 // to make a functional host process for testing. | 7 // to make a functional host process for testing. |
| 8 // | 8 // |
| 9 // It peforms the following functionality: | 9 // It peforms the following functionality: |
| 10 // 1. Connect to the GTalk network and register the machine as a host. | 10 // 1. Connect to the GTalk network and register the machine as a host. |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 .Append(UTF8ToWide(home_path)) | 210 .Append(UTF8ToWide(home_path)) |
| 211 .Append(kDefaultConfigPath); | 211 .Append(kDefaultConfigPath); |
| 212 #else | 212 #else |
| 213 std::string home_path; | 213 std::string home_path; |
| 214 env->GetVar(base::env_vars::kHome, &home_path); | 214 env->GetVar(base::env_vars::kHome, &home_path); |
| 215 return FilePath(home_path).Append(kDefaultConfigPath); | 215 return FilePath(home_path).Append(kDefaultConfigPath); |
| 216 #endif | 216 #endif |
| 217 } | 217 } |
| 218 | 218 |
| 219 void StartHost() { | 219 void StartHost() { |
| 220 signal_strategy_.reset( | 220 signal_strategy_.reset(new XmppSignalStrategy( |
| 221 new XmppSignalStrategy(context_.jingle_thread(), xmpp_login_, | 221 context_.url_request_context_getter(), |
| 222 xmpp_auth_token_, xmpp_auth_service_)); | 222 xmpp_login_, xmpp_auth_token_, xmpp_auth_service_)); |
| 223 signaling_connector_.reset(new SignalingConnector( | 223 signaling_connector_.reset(new SignalingConnector( |
| 224 signal_strategy_.get(), | 224 signal_strategy_.get(), |
| 225 base::Bind(&SimpleHost::OnAuthFailed, base::Unretained(this)))); | 225 base::Bind(&SimpleHost::OnAuthFailed, base::Unretained(this)))); |
| 226 | 226 |
| 227 if (fake_) { | 227 if (fake_) { |
| 228 scoped_ptr<VideoFrameCapturer> capturer(new VideoFrameCapturerFake()); | 228 scoped_ptr<VideoFrameCapturer> capturer(new VideoFrameCapturerFake()); |
| 229 scoped_ptr<EventExecutor> event_executor = EventExecutor::Create( | 229 scoped_ptr<EventExecutor> event_executor = EventExecutor::Create( |
| 230 context_.desktop_task_runner(), | 230 context_.desktop_task_runner(), |
| 231 context_.ui_task_runner()); | 231 context_.ui_task_runner()); |
| 232 scoped_ptr<AudioCapturer> audio_capturer(NULL); | 232 scoped_ptr<AudioCapturer> audio_capturer(NULL); |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 432 max_port < 0 || max_port > 65535) { | 432 max_port < 0 || max_port > 65535) { |
| 433 LOG(ERROR) << "Invalid max-port value: " << max_port | 433 LOG(ERROR) << "Invalid max-port value: " << max_port |
| 434 << ". Expected integer in range [0, 65535]."; | 434 << ". Expected integer in range [0, 65535]."; |
| 435 return 1; | 435 return 1; |
| 436 } | 436 } |
| 437 simple_host.network_settings()->max_port = max_port; | 437 simple_host.network_settings()->max_port = max_port; |
| 438 } | 438 } |
| 439 | 439 |
| 440 return simple_host.Run(); | 440 return simple_host.Run(); |
| 441 } | 441 } |
| OLD | NEW |