| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 | 84 |
| 85 namespace navigate { | 85 namespace navigate { |
| 86 extern const char kName[]; | 86 extern const char kName[]; |
| 87 extern const char kParamUrl[]; | 87 extern const char kParamUrl[]; |
| 88 } // navigate | 88 } // navigate |
| 89 | 89 |
| 90 namespace captureScreenshot { | 90 namespace captureScreenshot { |
| 91 extern const char kName[]; | 91 extern const char kName[]; |
| 92 extern const char kParamFormat[]; | 92 extern const char kParamFormat[]; |
| 93 extern const char kParamQuality[]; | 93 extern const char kParamQuality[]; |
| 94 extern const char kParamScale[]; | 94 extern const char kParamMaxWidth[]; |
| 95 extern const char kParamMaxHeight[]; |
| 95 } // captureScreenshot | 96 } // captureScreenshot |
| 96 | 97 |
| 97 namespace startScreencast { | 98 namespace startScreencast { |
| 98 extern const char kName[]; | 99 extern const char kName[]; |
| 99 extern const char kParamFormat[]; | |
| 100 extern const char kParamQuality[]; | |
| 101 extern const char kParamScale[]; | |
| 102 } // startScreencast | 100 } // startScreencast |
| 103 | 101 |
| 104 namespace stopScreencast { | 102 namespace stopScreencast { |
| 105 extern const char kName[]; | 103 extern const char kName[]; |
| 106 } // stopScreencast | 104 } // stopScreencast |
| 107 | 105 |
| 108 namespace screencastFrame { | 106 namespace screencastFrame { |
| 109 extern const char kName[]; | 107 extern const char kName[]; |
| 110 } // screencastFrame | 108 } // screencastFrame |
| 111 | 109 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 | 147 |
| 150 namespace getInfo { | 148 namespace getInfo { |
| 151 extern const char kName[]; | 149 extern const char kName[]; |
| 152 } // getInfo | 150 } // getInfo |
| 153 } // SystemInfo | 151 } // SystemInfo |
| 154 | 152 |
| 155 } // devtools | 153 } // devtools |
| 156 } // content | 154 } // content |
| 157 | 155 |
| 158 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ | 156 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ |
| OLD | NEW |