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