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

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: 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 #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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 98
99 99
100 namespace Worker { 100 namespace Worker {
101 101
102 namespace disconnectedFromWorker { 102 namespace disconnectedFromWorker {
103 extern const char kName[]; 103 extern const char kName[];
104 } // disconnectedFromWorker 104 } // disconnectedFromWorker
105 105
106 } // Worker 106 } // Worker
107 107
108
109 namespace SystemInfo {
110 extern const char kName[];
111
112 namespace getInfo {
113 extern const char kName[];
114 } // getInfo
115 } // SystemInfo
116
108 } // devtools 117 } // devtools
109 } // content 118 } // content
110 119
111 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ 120 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698