| 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 namespace stopScreencast { | 104 namespace stopScreencast { |
| 105 extern const char kName[]; | 105 extern const char kName[]; |
| 106 } // stopScreencast | 106 } // stopScreencast |
| 107 | 107 |
| 108 namespace screencastFrame { | 108 namespace screencastFrame { |
| 109 extern const char kName[]; | 109 extern const char kName[]; |
| 110 } // screencastFrame | 110 } // screencastFrame |
| 111 | 111 |
| 112 } // Page | 112 } // Page |
| 113 | 113 |
| 114 namespace Quota { |
| 115 namespace queryUsageAndQuota { |
| 116 extern const char kName[]; |
| 117 extern const char kParamSecurityOrigin[]; |
| 118 } // queryUsageAndQuota |
| 119 } // Quota |
| 120 |
| 114 namespace Tracing { | 121 namespace Tracing { |
| 115 extern const char kName[]; | 122 extern const char kName[]; |
| 116 | 123 |
| 117 namespace start { | 124 namespace start { |
| 118 extern const char kName[]; | 125 extern const char kName[]; |
| 119 extern const char kCategories[]; | 126 extern const char kCategories[]; |
| 120 extern const char kTraceOptions[]; | 127 extern const char kTraceOptions[]; |
| 121 } // start | 128 } // start |
| 122 | 129 |
| 123 namespace end { | 130 namespace end { |
| (...skipping 25 matching lines...) Expand all Loading... |
| 149 | 156 |
| 150 namespace getInfo { | 157 namespace getInfo { |
| 151 extern const char kName[]; | 158 extern const char kName[]; |
| 152 } // getInfo | 159 } // getInfo |
| 153 } // SystemInfo | 160 } // SystemInfo |
| 154 | 161 |
| 155 } // devtools | 162 } // devtools |
| 156 } // content | 163 } // content |
| 157 | 164 |
| 158 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ | 165 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ |
| OLD | NEW |