summaryrefslogtreecommitdiffstats
path: root/remoting/host/heartbeat_sender.h
diff options
context:
space:
mode:
authorsergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-20 20:31:44 +0000
committersergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-20 20:31:44 +0000
commit3361e1f24a5dd45ae86478af20c617d0b1ce40e0 (patch)
tree70079ed87a90f8f2322de722e6073ba192931196 /remoting/host/heartbeat_sender.h
parentbd1a64b72240734d1061b7edd95ec9f268792c49 (diff)
downloadchromium_src-3361e1f24a5dd45ae86478af20c617d0b1ce40e0.zip
chromium_src-3361e1f24a5dd45ae86478af20c617d0b1ce40e0.tar.gz
chromium_src-3361e1f24a5dd45ae86478af20c617d0b1ce40e0.tar.bz2
Use scoped_ptr<> to pass ownership in more places.
Review URL: http://codereview.chromium.org/9720019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@127767 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/heartbeat_sender.h')
-rw-r--r--remoting/host/heartbeat_sender.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/remoting/host/heartbeat_sender.h b/remoting/host/heartbeat_sender.h
index 9f48f78..92425fe 100644
--- a/remoting/host/heartbeat_sender.h
+++ b/remoting/host/heartbeat_sender.h
@@ -79,9 +79,9 @@ class IqSender;
// </iq>
class HeartbeatSender : public SignalStrategy::Listener {
public:
- // Doesn't take ownership of |signal_strategy| or |key_pair|. Both
- // parameters must outlive this object. Heartbeats will start when
- // the supplied SignalStrategy enters the CONNECTED state.
+ // |signal_strategy| and |key_pair| must outlive this
+ // object. Heartbeats will start when the supplied SignalStrategy
+ // enters the CONNECTED state.
HeartbeatSender(const std::string& host_id,
SignalStrategy* signal_strategy,
HostKeyPair* key_pair);