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

Side by Side Diff: remoting/host/server_log_entry.h

Issue 10399127: [Chromoting] Replace some bare pointers with scoped_ptrs, and improve naming. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « remoting/host/log_to_server.cc ('k') | remoting/host/server_log_entry.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #ifndef REMOTING_HOST_SERVER_LOG_ENTRY_H_ 5 #ifndef REMOTING_HOST_SERVER_LOG_ENTRY_H_
6 #define REMOTING_HOST_SERVER_LOG_ENTRY_H_ 6 #define REMOTING_HOST_SERVER_LOG_ENTRY_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 10
(...skipping 14 matching lines...) Expand all
25 ME2ME 25 ME2ME
26 }; 26 };
27 27
28 // Constructs a log stanza. The caller should add one or more log entry 28 // Constructs a log stanza. The caller should add one or more log entry
29 // stanzas as children of this stanza, before sending the log stanza to 29 // stanzas as children of this stanza, before sending the log stanza to
30 // the remoting bot. 30 // the remoting bot.
31 static scoped_ptr<buzz::XmlElement> MakeStanza(); 31 static scoped_ptr<buzz::XmlElement> MakeStanza();
32 32
33 // Constructs a log entry for a session state change. 33 // Constructs a log entry for a session state change.
34 // Currently this is either connection or disconnection. 34 // Currently this is either connection or disconnection.
35 static ServerLogEntry* MakeSessionStateChange(bool connection); 35 static scoped_ptr<ServerLogEntry> MakeForSessionStateChange(bool connection);
36 36
37 // Constructs a log entry for a heartbeat. 37 // Constructs a log entry for a heartbeat.
38 static ServerLogEntry* MakeForHeartbeat(); 38 static scoped_ptr<ServerLogEntry> MakeForHeartbeat();
39 39
40 ~ServerLogEntry(); 40 ~ServerLogEntry();
41 41
42 // Adds fields describing the host to this log entry. 42 // Adds fields describing the host to this log entry.
43 void AddHostFields(); 43 void AddHostFields();
44 44
45 // Adds a field describing the mode of a connection to this log entry. 45 // Adds a field describing the mode of a connection to this log entry.
46 void AddModeField(Mode mode); 46 void AddModeField(Mode mode);
47 47
48 // Adds a field describing connection type (direct/stun/relay). 48 // Adds a field describing connection type (direct/stun/relay).
(...skipping 10 matching lines...) Expand all
59 59
60 static const char* GetValueSessionState(bool connected); 60 static const char* GetValueSessionState(bool connected);
61 static const char* GetValueMode(Mode mode); 61 static const char* GetValueMode(Mode mode);
62 62
63 ValuesMap values_map_; 63 ValuesMap values_map_;
64 }; 64 };
65 65
66 } // namespace remoting 66 } // namespace remoting
67 67
68 #endif 68 #endif
OLDNEW
« no previous file with comments | « remoting/host/log_to_server.cc ('k') | remoting/host/server_log_entry.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698