| 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 } // queryUsageAndQuota |
| 132 |
| 128 } // Page | 133 } // Page |
| 129 | 134 |
| 130 namespace Tracing { | 135 namespace Tracing { |
| 131 extern const char kName[]; | 136 extern const char kName[]; |
| 132 | 137 |
| 133 namespace start { | 138 namespace start { |
| 134 extern const char kName[]; | 139 extern const char kName[]; |
| 135 extern const char kCategories[]; | 140 extern const char kCategories[]; |
| 136 extern const char kTraceOptions[]; | 141 extern const char kTraceOptions[]; |
| 137 } // start | 142 } // start |
| (...skipping 27 matching lines...) Expand all Loading... |
| 165 | 170 |
| 166 namespace getInfo { | 171 namespace getInfo { |
| 167 extern const char kName[]; | 172 extern const char kName[]; |
| 168 } // getInfo | 173 } // getInfo |
| 169 } // SystemInfo | 174 } // SystemInfo |
| 170 | 175 |
| 171 } // devtools | 176 } // devtools |
| 172 } // content | 177 } // content |
| 173 | 178 |
| 174 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ | 179 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ |
| OLD | NEW |