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

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: Refactored more code into WebSocketBrowserConnection on nduca's request. 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 const char kName[] = "Tracing.tracingComplete"; 93 const char kName[] = "Tracing.tracingComplete";
94 } 94 }
95 95
96 namespace dataCollected { 96 namespace dataCollected {
97 const char kName[] = "Tracing.dataCollected"; 97 const char kName[] = "Tracing.dataCollected";
98 const char kValue[] = "value"; 98 const char kValue[] = "value";
99 } 99 }
100 100
101 } // Tracing 101 } // Tracing
102 102
103 namespace SystemInfo {
104 const char kName[] = "SystemInfo";
105
106 namespace getInfo {
107 const char kName[] = "SystemInfo.getInfo";
108 } // getInfo
109 } // SystemInfo
110
103 } // devtools 111 } // devtools
104 } // content 112 } // content
105 113
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698