| 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 | 98 |
| 99 | 99 |
| 100 namespace Worker { | 100 namespace Worker { |
| 101 | 101 |
| 102 namespace disconnectedFromWorker { | 102 namespace disconnectedFromWorker { |
| 103 extern const char kName[]; | 103 extern const char kName[]; |
| 104 } // disconnectedFromWorker | 104 } // disconnectedFromWorker |
| 105 | 105 |
| 106 } // Worker | 106 } // Worker |
| 107 | 107 |
| 108 |
| 109 namespace SystemInfo { |
| 110 extern const char kName[]; |
| 111 |
| 112 namespace getInfo { |
| 113 extern const char kName[]; |
| 114 } // getInfo |
| 115 } // SystemInfo |
| 116 |
| 108 } // devtools | 117 } // devtools |
| 109 } // content | 118 } // content |
| 110 | 119 |
| 111 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ | 120 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ |
| OLD | NEW |