Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(112)

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/sdk/ScreenCaptureModel.js

Issue 2817593004: [DevTools] Move eye dropper functionality from protocol to embedder (Closed)
Patch Set: rebased Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/sdk/ResourceTreeModel.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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);
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/sdk/ResourceTreeModel.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698