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 25 matching lines...) Expand all Loading... |
36 extern const char kName[]; | 36 extern const char kName[]; |
37 extern const char kParamAccept[]; | 37 extern const char kParamAccept[]; |
38 extern const char kParamPromptText[]; | 38 extern const char kParamPromptText[]; |
39 } // handleJavaScriptDialog | 39 } // handleJavaScriptDialog |
40 namespace navigate { | 40 namespace navigate { |
41 extern const char kName[]; | 41 extern const char kName[]; |
42 extern const char kParamUrl[]; | 42 extern const char kParamUrl[]; |
43 } // navigate | 43 } // navigate |
44 namespace captureScreenshot { | 44 namespace captureScreenshot { |
45 extern const char kName[]; | 45 extern const char kName[]; |
| 46 extern const char kParamFormat[]; |
| 47 extern const char kParamQuality[]; |
| 48 extern const char kParamScale[]; |
46 extern const char kResponseData[]; | 49 extern const char kResponseData[]; |
47 } // captureScreenshot | 50 } // captureScreenshot |
48 } // Page | 51 } // Page |
49 | 52 |
50 namespace Tracing { | 53 namespace Tracing { |
51 extern const char kName[]; | 54 extern const char kName[]; |
52 | 55 |
53 namespace start { | 56 namespace start { |
54 extern const char kName[]; | 57 extern const char kName[]; |
55 extern const char kCategories[]; | 58 extern const char kCategories[]; |
(...skipping 18 matching lines...) Expand all Loading... |
74 namespace Worker { | 77 namespace Worker { |
75 namespace disconnectedFromWorker { | 78 namespace disconnectedFromWorker { |
76 extern const char kName[]; | 79 extern const char kName[]; |
77 } // disconnectedFromWorker | 80 } // disconnectedFromWorker |
78 } // Worker | 81 } // Worker |
79 | 82 |
80 } // devtools | 83 } // devtools |
81 } // content | 84 } // content |
82 | 85 |
83 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ | 86 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ |
OLD | NEW |