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

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

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 #ifndef CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ 5 #ifndef CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_
6 #define CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ 6 #define CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_
7 7
8 // The constants in this file should be used instead manually constructing 8 // The constants in this file should be used instead manually constructing
9 // strings passed to and from DevTools protocol. 9 // strings passed to and from DevTools protocol.
10 // 10 //
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 } 73 }
74 } // Tracing 74 } // Tracing
75 75
76 76
77 namespace Worker { 77 namespace Worker {
78 namespace disconnectedFromWorker { 78 namespace disconnectedFromWorker {
79 extern const char kName[]; 79 extern const char kName[];
80 } // disconnectedFromWorker 80 } // disconnectedFromWorker
81 } // Worker 81 } // Worker
82 82
83
84 namespace SystemInfo {
85 extern const char kName[];
86
87 namespace getInfo {
88 extern const char kName[];
89 } // getInfo
90 } // SystemInfo
91
83 } // devtools 92 } // devtools
84 } // content 93 } // content
85 94
86 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ 95 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698