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 const char kParamX[] = "x"; | 10 const char kParamX[] = "x"; |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 const char kName[] = "Inspector.targetCrashed"; | 54 const char kName[] = "Inspector.targetCrashed"; |
55 } // targetCrashed | 55 } // targetCrashed |
56 | 56 |
57 } // Inspector | 57 } // Inspector |
58 | 58 |
59 namespace Page { | 59 namespace Page { |
60 | 60 |
61 const char kData[] = "data"; | 61 const char kData[] = "data"; |
62 const char kParamDeviceScaleFactor[] = "deviceScaleFactor"; | 62 const char kParamDeviceScaleFactor[] = "deviceScaleFactor"; |
63 const char kParamPageScaleFactor[] = "pageScaleFactor"; | 63 const char kParamPageScaleFactor[] = "pageScaleFactor"; |
| 64 const char kParamOffsetBottom[] = "offsetBottom"; |
| 65 const char kParamOffsetTop[] = "offsetTop"; |
64 const char kParamViewport[] = "viewport"; | 66 const char kParamViewport[] = "viewport"; |
65 | 67 |
66 namespace disable { | 68 namespace disable { |
67 const char kName[] = "Page.disable"; | 69 const char kName[] = "Page.disable"; |
68 } // disable | 70 } // disable |
69 | 71 |
70 namespace handleJavaScriptDialog { | 72 namespace handleJavaScriptDialog { |
71 const char kName[] = "Page.handleJavaScriptDialog"; | 73 const char kName[] = "Page.handleJavaScriptDialog"; |
72 const char kParamAccept[] = "accept"; | 74 const char kParamAccept[] = "accept"; |
73 const char kParamPromptText[] = "promptText"; | 75 const char kParamPromptText[] = "promptText"; |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 const char kName[] = "SystemInfo"; | 138 const char kName[] = "SystemInfo"; |
137 | 139 |
138 namespace getInfo { | 140 namespace getInfo { |
139 const char kName[] = "SystemInfo.getInfo"; | 141 const char kName[] = "SystemInfo.getInfo"; |
140 } // getInfo | 142 } // getInfo |
141 } // SystemInfo | 143 } // SystemInfo |
142 | 144 |
143 } // devtools | 145 } // devtools |
144 } // content | 146 } // content |
145 | 147 |
OLD | NEW |