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

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

Issue 1737733002: [DevTools] Handle emulated device scale factor and original device scale factor properly. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 label:(string|undefined), enabled:(boolean|undefined), checked:(bo olean|undefined), 196 label:(string|undefined), enabled:(boolean|undefined), checked:(bo olean|undefined),
197 subItems:(!Array.<!DevToolsHost.ContextMenuDescriptor>|undefined)} } */ 197 subItems:(!Array.<!DevToolsHost.ContextMenuDescriptor>|undefined)} } */
198 DevToolsHost.ContextMenuDescriptor; 198 DevToolsHost.ContextMenuDescriptor;
199 199
200 /** 200 /**
201 * @return {number} 201 * @return {number}
202 */ 202 */
203 DevToolsHost.zoomFactor = function() { } 203 DevToolsHost.zoomFactor = function() { }
204 204
205 /** 205 /**
206 * @param {number} length
207 * @return {number}
208 */
209 DevToolsHost.convertLengthForEmbedder = function(length) { }
210
211 /**
212 * @param {string} origin 206 * @param {string} origin
213 * @param {string} script 207 * @param {string} script
214 */ 208 */
215 DevToolsHost.setInjectedScriptForOrigin = function(origin, script) { } 209 DevToolsHost.setInjectedScriptForOrigin = function(origin, script) { }
216 210
217 /** 211 /**
218 * @param {string} text 212 * @param {string} text
219 */ 213 */
220 DevToolsHost.copyText = function(text) { } 214 DevToolsHost.copyText = function(text) { }
221 215
(...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after
692 * @extends {ESTree.Node} 686 * @extends {ESTree.Node}
693 * @constructor 687 * @constructor
694 */ 688 */
695 ESTree.TemplateLiteralNode = function() 689 ESTree.TemplateLiteralNode = function()
696 { 690 {
697 /** @type {!Array.<!ESTree.Node>} */ 691 /** @type {!Array.<!ESTree.Node>} */
698 this.quasis; 692 this.quasis;
699 /** @type {!Array.<!ESTree.Node>} */ 693 /** @type {!Array.<!ESTree.Node>} */
700 this.expressions; 694 this.expressions;
701 } 695 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/devtools.js ('k') | third_party/WebKit/Source/web/WebViewImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698