| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_BASE_CHROMOTING_EVENT_H_ | 5 #ifndef REMOTING_BASE_CHROMOTING_EVENT_H_ |
| 6 #define REMOTING_BASE_CHROMOTING_EVENT_H_ | 6 #define REMOTING_BASE_CHROMOTING_EVENT_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 CONNECTION_STATISTICS = 2, | 80 CONNECTION_STATISTICS = 2, |
| 81 SESSION_ID_OLD = 3, | 81 SESSION_ID_OLD = 3, |
| 82 SESSION_ID_NEW = 4, | 82 SESSION_ID_NEW = 4, |
| 83 HEARTBEAT = 5, | 83 HEARTBEAT = 5, |
| 84 HEARTBEAT_REJECTED = 6, | 84 HEARTBEAT_REJECTED = 6, |
| 85 RESTART = 7, | 85 RESTART = 7, |
| 86 HOST_STATUS = 8, | 86 HOST_STATUS = 8, |
| 87 SIGNAL_STRATEGY_PROGRESS = 9 | 87 SIGNAL_STRATEGY_PROGRESS = 9 |
| 88 }; | 88 }; |
| 89 | 89 |
| 90 static const char kWebAppVersionKey[]; |
| 90 static const char kCaptureLatencyKey[]; | 91 static const char kCaptureLatencyKey[]; |
| 91 static const char kConnectionErrorKey[]; | 92 static const char kConnectionErrorKey[]; |
| 92 static const char kCpuKey[]; | 93 static const char kCpuKey[]; |
| 93 static const char kDecodeLatencyKey[]; | 94 static const char kDecodeLatencyKey[]; |
| 94 static const char kEncodeLatencyKey[]; | 95 static const char kEncodeLatencyKey[]; |
| 95 static const char kMaxCaptureLatencyKey[]; | 96 static const char kMaxCaptureLatencyKey[]; |
| 96 static const char kMaxDecodeLatencyKey[]; | 97 static const char kMaxDecodeLatencyKey[]; |
| 97 static const char kMaxEncodeLatencyKey[]; | 98 static const char kMaxEncodeLatencyKey[]; |
| 98 static const char kMaxRenderLatencyKey[]; | 99 static const char kMaxRenderLatencyKey[]; |
| 99 static const char kMaxRoundtripLatencyKey[]; | 100 static const char kMaxRoundtripLatencyKey[]; |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 | 144 |
| 144 private: | 145 private: |
| 145 std::unique_ptr<base::DictionaryValue> values_map_; | 146 std::unique_ptr<base::DictionaryValue> values_map_; |
| 146 | 147 |
| 147 int send_attempts_ = 0; | 148 int send_attempts_ = 0; |
| 148 }; | 149 }; |
| 149 | 150 |
| 150 } // namespace remoting | 151 } // namespace remoting |
| 151 | 152 |
| 152 #endif // REMOTING_BASE_CHROMOTING_EVENT_H_ | 153 #endif // REMOTING_BASE_CHROMOTING_EVENT_H_ |
| OLD | NEW |