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