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

Unified Diff: gpu/command_buffer/service/gpu_tracer.cc

Issue 1132283003: Merge Group Markers into Chromium Traces. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed extra c_str() call Created 5 years, 7 months 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 side-by-side diff with in-line comments
Download patch
Index: gpu/command_buffer/service/gpu_tracer.cc
diff --git a/gpu/command_buffer/service/gpu_tracer.cc b/gpu/command_buffer/service/gpu_tracer.cc
index e6c1e7fc8acb45da899d2e1aa9e1d655e321b2d3..3a5bcdfeb2509652a34e31cec6c71feb75a236f8 100644
--- a/gpu/command_buffer/service/gpu_tracer.cc
+++ b/gpu/command_buffer/service/gpu_tracer.cc
@@ -24,9 +24,8 @@ namespace gles2 {
static const unsigned int kProcessInterval = 16;
static const char* kGpuTraceSourceNames[] = {
- "GroupMarker", // kTraceGroupMarker = 0,
- "TraceCHROMIUM", // kTraceCHROMIUM = 1,
- "TraceCmd", // kTraceDecoder = 2,
+ "TraceCHROMIUM", // kTraceCHROMIUM = 0,
+ "TraceCmd", // kTraceDecoder = 1,
};
static_assert(NUM_TRACER_SOURCES == arraysize(kGpuTraceSourceNames),
"Trace source names must match enumeration.");

Powered by Google App Engine
This is Rietveld 408576698