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

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 namespace stopScreencast { 118 namespace stopScreencast {
119 extern const char kName[]; 119 extern const char kName[];
120 } // stopScreencast 120 } // stopScreencast
121 121
122 namespace screencastFrame { 122 namespace screencastFrame {
123 extern const char kName[]; 123 extern const char kName[];
124 } // screencastFrame 124 } // screencastFrame
125 125
126 } // Page 126 } // Page
127 127
128 namespace Quota {
129 namespace queryUsageAndQuota {
130 extern const char kName[];
131 extern const char kParamSecurityOrigin[];
132 } // queryUsageAndQuota
133 } // Quota
134
128 namespace Tracing { 135 namespace Tracing {
129 extern const char kName[]; 136 extern const char kName[];
130 137
131 namespace start { 138 namespace start {
132 extern const char kName[]; 139 extern const char kName[];
133 extern const char kCategories[]; 140 extern const char kCategories[];
134 extern const char kTraceOptions[]; 141 extern const char kTraceOptions[];
135 } // start 142 } // start
136 143
137 namespace end { 144 namespace end {
(...skipping 25 matching lines...) Expand all
163 170
164 namespace getInfo { 171 namespace getInfo {
165 extern const char kName[]; 172 extern const char kName[];
166 } // getInfo 173 } // getInfo
167 } // SystemInfo 174 } // SystemInfo
168 175
169 } // devtools 176 } // devtools
170 } // content 177 } // content
171 178
172 #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