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 #ifndef CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ | 5 #ifndef CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ |
6 #define CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ | 6 #define CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ |
7 | 7 |
8 // The constants in this file should be used instead manually constructing | 8 // The constants in this file should be used instead manually constructing |
9 // strings passed to and from DevTools protocol. | 9 // strings passed to and from DevTools protocol. |
10 // | 10 // |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 | 185 |
186 namespace tracingComplete { | 186 namespace tracingComplete { |
187 extern const char kName[]; | 187 extern const char kName[]; |
188 } | 188 } |
189 | 189 |
190 namespace dataCollected { | 190 namespace dataCollected { |
191 extern const char kName[]; | 191 extern const char kName[]; |
192 extern const char kValue[]; | 192 extern const char kValue[]; |
193 } | 193 } |
194 | 194 |
| 195 namespace configureSyntheticDelays { |
| 196 extern const char kName[]; |
| 197 extern const char kDelays[]; |
| 198 } |
| 199 |
| 200 namespace configureSyntheticDelaysComplete { |
| 201 extern const char kName[]; |
| 202 } |
| 203 |
195 } // Tracing | 204 } // Tracing |
196 | 205 |
197 namespace Worker { | 206 namespace Worker { |
198 | 207 |
199 namespace disconnectedFromWorker { | 208 namespace disconnectedFromWorker { |
200 extern const char kName[]; | 209 extern const char kName[]; |
201 } // disconnectedFromWorker | 210 } // disconnectedFromWorker |
202 | 211 |
203 } // Worker | 212 } // Worker |
204 | 213 |
205 | 214 |
206 namespace SystemInfo { | 215 namespace SystemInfo { |
207 extern const char kName[]; | 216 extern const char kName[]; |
208 | 217 |
209 namespace getInfo { | 218 namespace getInfo { |
210 extern const char kName[]; | 219 extern const char kName[]; |
211 } // getInfo | 220 } // getInfo |
212 } // SystemInfo | 221 } // SystemInfo |
213 | 222 |
214 } // devtools | 223 } // devtools |
215 } // content | 224 } // content |
216 | 225 |
217 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ | 226 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ |
OLD | NEW |