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

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

Issue 67683003: Remove TraceController (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix problematic Unretained Created 7 years, 1 month 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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 const char kName[] = "Worker.disconnectedFromWorker"; 168 const char kName[] = "Worker.disconnectedFromWorker";
169 } // disconnectedFromWorker 169 } // disconnectedFromWorker
170 170
171 } // Worker 171 } // Worker
172 172
173 namespace Tracing { 173 namespace Tracing {
174 const char kName[] = "Tracing"; 174 const char kName[] = "Tracing";
175 175
176 namespace start { 176 namespace start {
177 const char kName[] = "Tracing.start"; 177 const char kName[] = "Tracing.start";
178 const char kCategories[] = "categories";
179 const char kTraceOptions[] = "trace-options";
180 } // start 178 } // start
181 179
182 namespace end { 180 namespace end {
183 const char kName[] = "Tracing.end"; 181 const char kName[] = "Tracing.end";
184 } 182 }
185 183
186 namespace tracingComplete { 184 namespace traceBufferPercentFull {
187 const char kName[] = "Tracing.tracingComplete"; 185 const char kName[] = "Tracing.bufferPercentFull";
186 const char kValue[] = "value";
188 } 187 }
189 188
190 namespace dataCollected { 189 namespace dataCollected {
191 const char kName[] = "Tracing.dataCollected"; 190 const char kName[] = "Tracing.dataCollected";
192 const char kValue[] = "value"; 191 const char kValue[] = "value";
193 } 192 }
194 193
195 } // Tracing 194 } // Tracing
196 195
197 namespace SystemInfo { 196 namespace SystemInfo {
198 const char kName[] = "SystemInfo"; 197 const char kName[] = "SystemInfo";
199 198
200 namespace getInfo { 199 namespace getInfo {
201 const char kName[] = "SystemInfo.getInfo"; 200 const char kName[] = "SystemInfo.getInfo";
202 } // getInfo 201 } // getInfo
203 } // SystemInfo 202 } // SystemInfo
204 203
205 } // devtools 204 } // devtools
206 } // content 205 } // content
207 206
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698