OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 #include "content/browser/devtools/devtools_protocol_constants.h" | 5 #include "content/browser/devtools/devtools_protocol_constants.h" |
6 | 6 |
7 namespace content { | 7 namespace content { |
8 namespace devtools { | 8 namespace devtools { |
9 | 9 |
10 const char kParamX[] = "x"; | 10 const char kParamX[] = "x"; |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 | 185 |
186 namespace tracingComplete { | 186 namespace tracingComplete { |
187 const char kName[] = "Tracing.tracingComplete"; | 187 const char kName[] = "Tracing.tracingComplete"; |
188 } | 188 } |
189 | 189 |
190 namespace dataCollected { | 190 namespace dataCollected { |
191 const char kName[] = "Tracing.dataCollected"; | 191 const char kName[] = "Tracing.dataCollected"; |
192 const char kValue[] = "value"; | 192 const char kValue[] = "value"; |
193 } | 193 } |
194 | 194 |
| 195 namespace configureSyntheticDelays { |
| 196 const char kName[] = "Tracing.configureSyntheticDelays"; |
| 197 const char kDelays[] = "delays"; |
| 198 } |
| 199 |
| 200 namespace configureSyntheticDelaysComplete { |
| 201 const char kName[] = "Tracing.configureSyntheticDelaysComplete"; |
| 202 } |
| 203 |
195 } // Tracing | 204 } // Tracing |
196 | 205 |
197 namespace SystemInfo { | 206 namespace SystemInfo { |
198 const char kName[] = "SystemInfo"; | 207 const char kName[] = "SystemInfo"; |
199 | 208 |
200 namespace getInfo { | 209 namespace getInfo { |
201 const char kName[] = "SystemInfo.getInfo"; | 210 const char kName[] = "SystemInfo.getInfo"; |
202 } // getInfo | 211 } // getInfo |
203 } // SystemInfo | 212 } // SystemInfo |
204 | 213 |
205 } // devtools | 214 } // devtools |
206 } // content | 215 } // content |
207 | 216 |
OLD | NEW |