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

Unified Diff: remoting/host/heartbeat_sender.h

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/chromoting_host.cc ('k') | remoting/host/heartbeat_sender.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/heartbeat_sender.h
diff --git a/remoting/host/heartbeat_sender.h b/remoting/host/heartbeat_sender.h
index 65216547c913de82ea654365401b0bc741bd49bd..f11d21d9663066325cd81f3d1ba2d961a7417c0c 100644
--- a/remoting/host/heartbeat_sender.h
+++ b/remoting/host/heartbeat_sender.h
@@ -15,6 +15,7 @@ namespace remoting {
class IqRequest;
class JingleClient;
+class HostConfig;
// HeartbeatSender periodically sends hertbeats to the chromoting bot.
// TODO(sergeyu): Write unittest for this class.
@@ -23,7 +24,7 @@ class HeartbeatSender : public base::RefCountedThreadSafe<HeartbeatSender> {
HeartbeatSender();
// Starts heart-beating for |jingle_client|.
- void Start(JingleClient* jingle_client, const std::string& host_id);
+ void Start(HostConfig* config, JingleClient* jingle_client);
private:
void DoStart();
@@ -32,8 +33,8 @@ class HeartbeatSender : public base::RefCountedThreadSafe<HeartbeatSender> {
void ProcessResponse(const buzz::XmlElement* response);
bool started_;
+ scoped_refptr<HostConfig> config_;
JingleClient* jingle_client_;
- std::string host_id_;
scoped_ptr<IqRequest> request_;
};
« no previous file with comments | « remoting/host/chromoting_host.cc ('k') | remoting/host/heartbeat_sender.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698