| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 } | 73 } |
| 74 } // Tracing | 74 } // Tracing |
| 75 | 75 |
| 76 | 76 |
| 77 namespace Worker { | 77 namespace Worker { |
| 78 namespace disconnectedFromWorker { | 78 namespace disconnectedFromWorker { |
| 79 extern const char kName[]; | 79 extern const char kName[]; |
| 80 } // disconnectedFromWorker | 80 } // disconnectedFromWorker |
| 81 } // Worker | 81 } // Worker |
| 82 | 82 |
| 83 |
| 84 namespace SystemInfo { |
| 85 extern const char kName[]; |
| 86 |
| 87 namespace getInfo { |
| 88 extern const char kName[]; |
| 89 } // getInfo |
| 90 } // SystemInfo |
| 91 |
| 83 } // devtools | 92 } // devtools |
| 84 } // content | 93 } // content |
| 85 | 94 |
| 86 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ | 95 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ |
| OLD | NEW |