OLD | NEW |
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 Loading... |
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 extern const char kResponseQuota[]; |
| 132 extern const char kResponseUsage[]; |
| 133 } // queryUsageAndQuota |
| 134 |
| 135 namespace Quota { |
| 136 extern const char kItemTemporary[]; |
| 137 extern const char kItemPersistent[]; |
| 138 } // Quota |
| 139 |
| 140 namespace Usage { |
| 141 extern const char kItemTemporary[]; |
| 142 extern const char kItemPersistent[]; |
| 143 extern const char kItemSyncable[]; |
| 144 } // Usage |
| 145 |
| 146 namespace UsageItem { |
| 147 namespace ID { |
| 148 extern const char kFilesystem[]; |
| 149 extern const char kDatabase[]; |
| 150 extern const char kAppcache[]; |
| 151 extern const char kIndexedDatabase[]; |
| 152 } // ID |
| 153 extern const char kItemID[]; |
| 154 extern const char kItemValue[]; |
| 155 } // UsageItem |
| 156 |
128 } // Page | 157 } // Page |
129 | 158 |
130 namespace Tracing { | 159 namespace Tracing { |
131 extern const char kName[]; | 160 extern const char kName[]; |
132 | 161 |
133 namespace start { | 162 namespace start { |
134 extern const char kName[]; | 163 extern const char kName[]; |
135 extern const char kCategories[]; | 164 extern const char kCategories[]; |
136 extern const char kTraceOptions[]; | 165 extern const char kTraceOptions[]; |
137 } // start | 166 } // start |
(...skipping 27 matching lines...) Expand all Loading... |
165 | 194 |
166 namespace getInfo { | 195 namespace getInfo { |
167 extern const char kName[]; | 196 extern const char kName[]; |
168 } // getInfo | 197 } // getInfo |
169 } // SystemInfo | 198 } // SystemInfo |
170 | 199 |
171 } // devtools | 200 } // devtools |
172 } // content | 201 } // content |
173 | 202 |
174 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ | 203 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ |
OLD | NEW |