| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 namespace tracingComplete { | 65 namespace tracingComplete { |
| 66 const char kName[] = "Tracing.tracingComplete"; | 66 const char kName[] = "Tracing.tracingComplete"; |
| 67 } | 67 } |
| 68 | 68 |
| 69 namespace dataCollected { | 69 namespace dataCollected { |
| 70 const char kName[] = "Tracing.dataCollected"; | 70 const char kName[] = "Tracing.dataCollected"; |
| 71 const char kValue[] = "value"; | 71 const char kValue[] = "value"; |
| 72 } | 72 } |
| 73 } // Tracing | 73 } // Tracing |
| 74 | 74 |
| 75 namespace SystemInfo { |
| 76 const char kName[] = "SystemInfo"; |
| 77 |
| 78 namespace getInfo { |
| 79 const char kName[] = "SystemInfo.getInfo"; |
| 80 } // getInfo |
| 81 } // SystemInfo |
| 82 |
| 75 } // devtools | 83 } // devtools |
| 76 } // content | 84 } // content |
| 77 | 85 |
| OLD | NEW |