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

Side by Side Diff: content/browser/devtools/devtools_protocol_constants.cc

Issue 99543002: Make it possible to configure synthetic delays through Devtools (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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
OLDNEW
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
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
OLDNEW
« no previous file with comments | « content/browser/devtools/devtools_protocol_constants.h ('k') | content/browser/devtools/devtools_tracing_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698