OLD | NEW |
1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 /** | 5 /** |
6 * @implements {Protocol.PageDispatcher} | 6 * @implements {Protocol.PageDispatcher} |
7 */ | 7 */ |
8 SDK.ScreenCaptureModel = class extends SDK.SDKModel { | 8 SDK.ScreenCaptureModel = class extends SDK.SDKModel { |
9 /** | 9 /** |
10 * @param {!SDK.Target} target | 10 * @param {!SDK.Target} target |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 | 176 |
177 /** | 177 /** |
178 * @override | 178 * @override |
179 * @param {boolean} result | 179 * @param {boolean} result |
180 */ | 180 */ |
181 javascriptDialogClosed(result) { | 181 javascriptDialogClosed(result) { |
182 } | 182 } |
183 | 183 |
184 /** | 184 /** |
185 * @override | 185 * @override |
186 * @param {!Protocol.DOM.RGBA} color | |
187 */ | |
188 colorPicked(color) { | |
189 } | |
190 | |
191 /** | |
192 * @override | |
193 */ | 186 */ |
194 interstitialShown() { | 187 interstitialShown() { |
195 } | 188 } |
196 | 189 |
197 /** | 190 /** |
198 * @override | 191 * @override |
199 */ | 192 */ |
200 interstitialHidden() { | 193 interstitialHidden() { |
201 } | 194 } |
202 | 195 |
203 /** | 196 /** |
204 * @override | 197 * @override |
205 */ | 198 */ |
206 navigationRequested() { | 199 navigationRequested() { |
207 } | 200 } |
208 }; | 201 }; |
209 | 202 |
210 SDK.SDKModel.register(SDK.ScreenCaptureModel, SDK.Target.Capability.ScreenCaptur
e, false); | 203 SDK.SDKModel.register(SDK.ScreenCaptureModel, SDK.Target.Capability.ScreenCaptur
e, false); |
OLD | NEW |