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

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

Issue 21682002: Expose GPU information to Telemetry. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed pfeldman's feedback. Added SystemInfo, simplified, fixed bugs in protocol implementation.… Created 7 years, 4 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 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 namespace Inspector { 10 namespace Inspector {
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 namespace tracingComplete { 65 namespace tracingComplete {
66 const char kName[] = "Tracing.tracingComplete"; 66 const char kName[] = "Tracing.tracingComplete";
67 } 67 }
68 68
69 namespace dataCollected { 69 namespace dataCollected {
70 const char kName[] = "Tracing.dataCollected"; 70 const char kName[] = "Tracing.dataCollected";
71 const char kValue[] = "value"; 71 const char kValue[] = "value";
72 } 72 }
73 } // Tracing 73 } // Tracing
74 74
75 namespace SystemInfo {
76 const char kName[] = "SystemInfo";
77
78 namespace getInfo {
79 const char kName[] = "SystemInfo.getInfo";
80 } // getInfo
81 } // SystemInfo
82
75 } // devtools 83 } // devtools
76 } // content 84 } // content
77 85
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698