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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 } // startScreencast | 122 } // startScreencast |
123 | 123 |
124 namespace stopScreencast { | 124 namespace stopScreencast { |
125 extern const char kName[]; | 125 extern const char kName[]; |
126 } // stopScreencast | 126 } // stopScreencast |
127 | 127 |
128 namespace screencastFrame { | 128 namespace screencastFrame { |
129 extern const char kName[]; | 129 extern const char kName[]; |
130 } // screencastFrame | 130 } // screencastFrame |
131 | 131 |
| 132 namespace queryUsageAndQuota { |
| 133 extern const char kName[]; |
| 134 extern const char kParamSecurityOrigin[]; |
| 135 extern const char kResponseQuota[]; |
| 136 extern const char kResponseUsage[]; |
| 137 } // queryUsageAndQuota |
| 138 |
| 139 namespace Quota { |
| 140 extern const char kItemTemporary[]; |
| 141 extern const char kItemPersistent[]; |
| 142 } // Quota |
| 143 |
| 144 namespace Usage { |
| 145 extern const char kItemTemporary[]; |
| 146 extern const char kItemPersistent[]; |
| 147 extern const char kItemSyncable[]; |
| 148 } // Usage |
| 149 |
| 150 namespace UsageItem { |
| 151 namespace ID { |
| 152 extern const char kFilesystem[]; |
| 153 extern const char kDatabase[]; |
| 154 extern const char kAppcache[]; |
| 155 extern const char kIndexedDatabase[]; |
| 156 } // ID |
| 157 extern const char kItemID[]; |
| 158 extern const char kItemValue[]; |
| 159 } // UsageItem |
| 160 |
132 namespace screencastVisibilityChanged { | 161 namespace screencastVisibilityChanged { |
133 extern const char kName[]; | 162 extern const char kName[]; |
134 extern const char kParamVisible[]; | 163 extern const char kParamVisible[]; |
135 } // screencastVisibilityChanged | 164 } // screencastVisibilityChanged |
136 } // Page | 165 } // Page |
137 | 166 |
138 namespace Tracing { | 167 namespace Tracing { |
139 extern const char kName[]; | 168 extern const char kName[]; |
140 | 169 |
141 namespace start { | 170 namespace start { |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 | 202 |
174 namespace getInfo { | 203 namespace getInfo { |
175 extern const char kName[]; | 204 extern const char kName[]; |
176 } // getInfo | 205 } // getInfo |
177 } // SystemInfo | 206 } // SystemInfo |
178 | 207 |
179 } // devtools | 208 } // devtools |
180 } // content | 209 } // content |
181 | 210 |
182 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ | 211 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ |
OLD | NEW |