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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 extern const char kName[]; | 89 extern const char kName[]; |
90 } // stopScreencast | 90 } // stopScreencast |
91 | 91 |
92 namespace screencastFrame { | 92 namespace screencastFrame { |
93 extern const char kName[]; | 93 extern const char kName[]; |
94 extern const char kResponseData[]; | 94 extern const char kResponseData[]; |
95 } // screencastFrame | 95 } // screencastFrame |
96 | 96 |
97 } // Page | 97 } // Page |
98 | 98 |
| 99 namespace Quota { |
| 100 namespace queryUsageAndQuota { |
| 101 extern const char kName[]; |
| 102 extern const char kParamSecurityOrigin[]; |
| 103 } // queryUsageAndQuota |
| 104 } // Quota |
| 105 |
99 namespace Tracing { | 106 namespace Tracing { |
100 extern const char kName[]; | 107 extern const char kName[]; |
101 | 108 |
102 namespace start { | 109 namespace start { |
103 extern const char kName[]; | 110 extern const char kName[]; |
104 extern const char kCategories[]; | 111 extern const char kCategories[]; |
105 extern const char kTraceOptions[]; | 112 extern const char kTraceOptions[]; |
106 } // start | 113 } // start |
107 | 114 |
108 namespace end { | 115 namespace end { |
(...skipping 25 matching lines...) Expand all Loading... |
134 | 141 |
135 namespace getInfo { | 142 namespace getInfo { |
136 extern const char kName[]; | 143 extern const char kName[]; |
137 } // getInfo | 144 } // getInfo |
138 } // SystemInfo | 145 } // SystemInfo |
139 | 146 |
140 } // devtools | 147 } // devtools |
141 } // content | 148 } // content |
142 | 149 |
143 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ | 150 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ |
OLD | NEW |