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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 extern const char kName[]; | 63 extern const char kName[]; |
64 } // targetCrashed | 64 } // targetCrashed |
65 | 65 |
66 } // Inspector | 66 } // Inspector |
67 | 67 |
68 namespace Page { | 68 namespace Page { |
69 | 69 |
70 extern const char kData[]; | 70 extern const char kData[]; |
71 extern const char kParamDeviceScaleFactor[]; | 71 extern const char kParamDeviceScaleFactor[]; |
72 extern const char kParamPageScaleFactor[]; | 72 extern const char kParamPageScaleFactor[]; |
| 73 extern const char kParamOffsetBottom[]; |
| 74 extern const char kParamOffsetTop[]; |
73 extern const char kParamViewport[]; | 75 extern const char kParamViewport[]; |
74 | 76 |
75 namespace disable { | 77 namespace disable { |
76 extern const char kName[]; | 78 extern const char kName[]; |
77 } // disable | 79 } // disable |
78 | 80 |
79 namespace handleJavaScriptDialog { | 81 namespace handleJavaScriptDialog { |
80 extern const char kName[]; | 82 extern const char kName[]; |
81 extern const char kParamAccept[]; | 83 extern const char kParamAccept[]; |
82 extern const char kParamPromptText[]; | 84 extern const char kParamPromptText[]; |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 | 149 |
148 namespace getInfo { | 150 namespace getInfo { |
149 extern const char kName[]; | 151 extern const char kName[]; |
150 } // getInfo | 152 } // getInfo |
151 } // SystemInfo | 153 } // SystemInfo |
152 | 154 |
153 } // devtools | 155 } // devtools |
154 } // content | 156 } // content |
155 | 157 |
156 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ | 158 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ |
OLD | NEW |