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

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: Removed more unnecessary includes. 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 namespace tracingComplete { 62 namespace tracingComplete {
63 const char kName[] = "Tracing.tracingComplete"; 63 const char kName[] = "Tracing.tracingComplete";
64 } 64 }
65 65
66 namespace dataCollected { 66 namespace dataCollected {
67 const char kName[] = "Tracing.dataCollected"; 67 const char kName[] = "Tracing.dataCollected";
68 const char kValue[] = "value"; 68 const char kValue[] = "value";
69 } 69 }
70 } // Tracing 70 } // Tracing
71 71
72 namespace SystemInfo {
73 const char kName[] = "SystemInfo";
74
75 namespace getGPUInfo {
76 const char kName[] = "SystemInfo.getGPUInfo";
77 } // getGPUInfo
78 } // SystemInfo
79
72 } // devtools 80 } // devtools
73 } // content 81 } // content
74 82
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698