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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 extern const char kName[]; | 82 extern const char kName[]; |
83 extern const char kParamAccept[]; | 83 extern const char kParamAccept[]; |
84 extern const char kParamPromptText[]; | 84 extern const char kParamPromptText[]; |
85 } // handleJavaScriptDialog | 85 } // handleJavaScriptDialog |
86 | 86 |
87 namespace navigate { | 87 namespace navigate { |
88 extern const char kName[]; | 88 extern const char kName[]; |
89 extern const char kParamUrl[]; | 89 extern const char kParamUrl[]; |
90 } // navigate | 90 } // navigate |
91 | 91 |
| 92 namespace getNavigationHistory { |
| 93 extern const char kName[]; |
| 94 extern const char kResponseCurrentIndex[]; |
| 95 extern const char kResponseEntries[]; |
| 96 extern const char kResponseEntryId[]; |
| 97 extern const char kResponseEntryURL[]; |
| 98 extern const char kResponseEntryTitle[]; |
| 99 } // getNavigationHistory |
| 100 |
| 101 namespace navigateToHistoryEntry { |
| 102 extern const char kName[]; |
| 103 extern const char kParamEntryId[]; |
| 104 } // navigateToHistoryEntry |
| 105 |
92 namespace captureScreenshot { | 106 namespace captureScreenshot { |
93 extern const char kName[]; | 107 extern const char kName[]; |
94 extern const char kParamFormat[]; | 108 extern const char kParamFormat[]; |
95 extern const char kParamQuality[]; | 109 extern const char kParamQuality[]; |
96 extern const char kParamMaxWidth[]; | 110 extern const char kParamMaxWidth[]; |
97 extern const char kParamMaxHeight[]; | 111 extern const char kParamMaxHeight[]; |
98 } // captureScreenshot | 112 } // captureScreenshot |
99 | 113 |
100 namespace startScreencast { | 114 namespace startScreencast { |
101 extern const char kName[]; | 115 extern const char kName[]; |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 | 163 |
150 namespace getInfo { | 164 namespace getInfo { |
151 extern const char kName[]; | 165 extern const char kName[]; |
152 } // getInfo | 166 } // getInfo |
153 } // SystemInfo | 167 } // SystemInfo |
154 | 168 |
155 } // devtools | 169 } // devtools |
156 } // content | 170 } // content |
157 | 171 |
158 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ | 172 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ |
OLD | NEW |