| Index: content/browser/devtools/devtools_protocol_constants.cc
|
| diff --git a/content/browser/devtools/devtools_protocol_constants.cc b/content/browser/devtools/devtools_protocol_constants.cc
|
| index d9c337fc8aa9341933be03d2fdbc4922e318ee13..43123668c7c999e906be6ec2b452fd08c81bf654 100644
|
| --- a/content/browser/devtools/devtools_protocol_constants.cc
|
| +++ b/content/browser/devtools/devtools_protocol_constants.cc
|
| @@ -120,6 +120,35 @@ namespace screencastFrame {
|
| const char kName[] = "Page.screencastFrame";
|
| } // screencastFrame
|
|
|
| +namespace queryUsageAndQuota {
|
| + const char kName[] = "Page.queryUsageAndQuota";
|
| + const char kParamSecurityOrigin[] = "securityOrigin";
|
| + extern const char kResponseQuota[] = "quota";
|
| + extern const char kResponseUsage[] = "usage";
|
| +} // queryUsageAndQuota
|
| +
|
| +namespace Quota {
|
| + extern const char kItemTemporary[] = "temporary";
|
| + extern const char kItemPersistent[] = "persistent";
|
| +} // Quota
|
| +
|
| +namespace Usage {
|
| + extern const char kItemTemporary[] = "temporary";
|
| + extern const char kItemPersistent[] = "persistent";
|
| + extern const char kItemSyncable[] = "syncable";
|
| +} // Usage
|
| +
|
| +namespace UsageItem {
|
| + namespace ID {
|
| + extern const char kFilesystem[] = "filesystem";
|
| + extern const char kDatabase[] = "database";
|
| + extern const char kAppcache[] = "appcache";
|
| + extern const char kIndexedDatabase[] = "indexeddatabase";
|
| + } // ID
|
| + extern const char kItemID[] = "id";
|
| + extern const char kItemValue[] = "value";
|
| +} // UsageItem
|
| +
|
| namespace screencastVisibilityChanged {
|
| const char kName[] = "Page.screencastVisibilityChanged";
|
| const char kParamVisible[] = "visible";
|
|
|