| 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 #include "content/browser/devtools/devtools_protocol_constants.h" | 5 #include "content/browser/devtools/devtools_protocol_constants.h" |
| 6 | 6 |
| 7 namespace content { | 7 namespace content { |
| 8 namespace devtools { | 8 namespace devtools { |
| 9 | 9 |
| 10 namespace Inspector { | 10 namespace Inspector { |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 const char kName[] = "Tracing.tracingComplete"; | 93 const char kName[] = "Tracing.tracingComplete"; |
| 94 } | 94 } |
| 95 | 95 |
| 96 namespace dataCollected { | 96 namespace dataCollected { |
| 97 const char kName[] = "Tracing.dataCollected"; | 97 const char kName[] = "Tracing.dataCollected"; |
| 98 const char kValue[] = "value"; | 98 const char kValue[] = "value"; |
| 99 } | 99 } |
| 100 | 100 |
| 101 } // Tracing | 101 } // Tracing |
| 102 | 102 |
| 103 namespace SystemInfo { |
| 104 const char kName[] = "SystemInfo"; |
| 105 |
| 106 namespace getInfo { |
| 107 const char kName[] = "SystemInfo.getInfo"; |
| 108 } // getInfo |
| 109 } // SystemInfo |
| 110 |
| 103 } // devtools | 111 } // devtools |
| 104 } // content | 112 } // content |
| 105 | 113 |
| OLD | NEW |