diff options
author | simonmorris@chromium.org <simonmorris@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-22 16:44:12 +0000 |
---|---|---|
committer | simonmorris@chromium.org <simonmorris@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-22 16:44:12 +0000 |
commit | bd7b911d9b6bba55f90833fe93fe2c2f434b8551 (patch) | |
tree | c565e04a88b33703ec3682b0bbf6577c3421f49f /remoting/host/server_log_entry.h | |
parent | 49a1f3fdb7215a9e7ab25a54f4e33ff13fc04417 (diff) | |
download | chromium_src-bd7b911d9b6bba55f90833fe93fe2c2f434b8551.zip chromium_src-bd7b911d9b6bba55f90833fe93fe2c2f434b8551.tar.gz chromium_src-bd7b911d9b6bba55f90833fe93fe2c2f434b8551.tar.bz2 |
[Chromoting] Add platform data to heartbeats.
BUG=126491
Review URL: https://chromiumcodereview.appspot.com/10409017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138275 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/server_log_entry.h')
-rw-r--r-- | remoting/host/server_log_entry.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/remoting/host/server_log_entry.h b/remoting/host/server_log_entry.h index 8e5be83..f1af9bd 100644 --- a/remoting/host/server_log_entry.h +++ b/remoting/host/server_log_entry.h @@ -25,10 +25,18 @@ class ServerLogEntry { ME2ME }; + // Constructs a log stanza. The caller should add one or more log entry + // stanzas as children of this stanza, before sending the log stanza to + // the remoting bot. + static scoped_ptr<buzz::XmlElement> MakeStanza(); + // Constructs a log entry for a session state change. // Currently this is either connection or disconnection. static ServerLogEntry* MakeSessionStateChange(bool connection); + // Constructs a log entry for a heartbeat. + static ServerLogEntry* MakeForHeartbeat(); + ~ServerLogEntry(); // Adds fields describing the host to this log entry. |