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

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

Issue 23240002: Backend for DevTools quota managements. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 } // startScreencast 118 } // startScreencast
119 119
120 namespace stopScreencast { 120 namespace stopScreencast {
121 extern const char kName[]; 121 extern const char kName[];
122 } // stopScreencast 122 } // stopScreencast
123 123
124 namespace screencastFrame { 124 namespace screencastFrame {
125 extern const char kName[]; 125 extern const char kName[];
126 } // screencastFrame 126 } // screencastFrame
127 127
128 namespace queryUsageAndQuota {
129 extern const char kName[];
130 extern const char kParamSecurityOrigin[];
131 } // queryUsageAndQuota
132
128 } // Page 133 } // Page
129 134
130 namespace Tracing { 135 namespace Tracing {
131 extern const char kName[]; 136 extern const char kName[];
132 137
133 namespace start { 138 namespace start {
134 extern const char kName[]; 139 extern const char kName[];
135 extern const char kCategories[]; 140 extern const char kCategories[];
136 extern const char kTraceOptions[]; 141 extern const char kTraceOptions[];
137 } // start 142 } // start
(...skipping 27 matching lines...) Expand all
165 170
166 namespace getInfo { 171 namespace getInfo {
167 extern const char kName[]; 172 extern const char kName[];
168 } // getInfo 173 } // getInfo
169 } // SystemInfo 174 } // SystemInfo
170 175
171 } // devtools 176 } // devtools
172 } // content 177 } // content
173 178
174 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ 179 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698