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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 extern const char kName[]; | 168 extern const char kName[]; |
169 extern const char kParamVisible[]; | 169 extern const char kParamVisible[]; |
170 } // screencastVisibilityChanged | 170 } // screencastVisibilityChanged |
171 } // Page | 171 } // Page |
172 | 172 |
173 namespace Tracing { | 173 namespace Tracing { |
174 extern const char kName[]; | 174 extern const char kName[]; |
175 | 175 |
176 namespace start { | 176 namespace start { |
177 extern const char kName[]; | 177 extern const char kName[]; |
178 extern const char kCategories[]; | |
179 extern const char kTraceOptions[]; | |
180 } // start | 178 } // start |
181 | 179 |
182 namespace end { | 180 namespace end { |
183 extern const char kName[]; | 181 extern const char kName[]; |
184 } | 182 } |
185 | 183 |
186 namespace tracingComplete { | 184 namespace traceBufferPercentFull { |
187 extern const char kName[]; | 185 extern const char kName[]; |
| 186 extern const char kValue[]; |
188 } | 187 } |
189 | 188 |
190 namespace dataCollected { | 189 namespace dataCollected { |
191 extern const char kName[]; | 190 extern const char kName[]; |
192 extern const char kValue[]; | 191 extern const char kValue[]; |
193 } | 192 } |
194 | 193 |
195 } // Tracing | 194 } // Tracing |
196 | 195 |
197 namespace Worker { | 196 namespace Worker { |
(...skipping 10 matching lines...) Expand all Loading... |
208 | 207 |
209 namespace getInfo { | 208 namespace getInfo { |
210 extern const char kName[]; | 209 extern const char kName[]; |
211 } // getInfo | 210 } // getInfo |
212 } // SystemInfo | 211 } // SystemInfo |
213 | 212 |
214 } // devtools | 213 } // devtools |
215 } // content | 214 } // content |
216 | 215 |
217 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ | 216 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ |
OLD | NEW |