Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(498)

Unified Diff: remoting/host/simple_host_process.cc

Issue 2810002: Added HostConfig class. Changed SimpleHost to use it. (Closed)
Patch Set: - Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/host/host_config.h ('k') | remoting/remoting.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/simple_host_process.cc
diff --git a/remoting/host/simple_host_process.cc b/remoting/host/simple_host_process.cc
index d32547fe1192233d7a1888cdcd0646d182427b47..86890f7129421d5990efddfadf7a38d9dd3c1af5 100644
--- a/remoting/host/simple_host_process.cc
+++ b/remoting/host/simple_host_process.cc
@@ -25,6 +25,7 @@
#include "base/waitable_event.h"
#include "remoting/host/capturer_fake.h"
#include "remoting/host/encoder_verbatim.h"
+#include "remoting/host/host_config.h"
#include "remoting/host/chromoting_host.h"
#if defined(OS_WIN)
@@ -102,15 +103,21 @@ int main(int argc, char** argv) {
capturer.reset(new remoting::CapturerFake());
}
+ // TODO(sergeyu): Implement HostConfigStorage and use it here to load
+ // settings.
+ scoped_refptr<remoting::HostConfig> config(new remoting::HostConfig());
+ config->set_xmpp_login(username);
+ config->set_xmpp_auth_token(auth_token);
+ config->set_host_id("foo");
+
// Construct a chromoting host with username and auth_token.
- // TODO(hclam): Allow the host to load saved credentials.
base::WaitableEvent host_done(false, false);
- scoped_refptr<remoting::ChromotingHost> host
- = new remoting::ChromotingHost(username, auth_token,
- capturer.release(),
- encoder.release(),
- executor.release(),
- &host_done);
+ scoped_refptr<remoting::ChromotingHost> host =
+ new remoting::ChromotingHost(config,
+ capturer.release(),
+ encoder.release(),
+ executor.release(),
+ &host_done);
host->Run();
host_done.Wait();
return 0;
« no previous file with comments | « remoting/host/host_config.h ('k') | remoting/remoting.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698