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

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

Issue 18347003: DevTools: Implement CSS pretty-printing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Comments addressed Created 7 years, 2 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 | Annotate | Revision Log
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 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 } 259 }
260 260
261 /** @constructor */ 261 /** @constructor */
262 SourceMapV3.Offset = function() 262 SourceMapV3.Offset = function()
263 { 263 {
264 /** @type {number} */ this.line; 264 /** @type {number} */ this.line;
265 /** @type {number} */ this.column; 265 /** @type {number} */ this.column;
266 } 266 }
267 267
268 // FIXME: remove everything below. 268 // FIXME: remove everything below.
269 var FormatterWorker = {}
269 var WebInspector = {} 270 var WebInspector = {}
270 271
271 WebInspector.queryParamsObject = {} 272 WebInspector.queryParamsObject = {}
272 WebInspector.toggleSearchingForNode = function() {} 273 WebInspector.toggleSearchingForNode = function() {}
273 WebInspector.panels = {}; 274 WebInspector.panels = {};
274 275
275 /** 276 /**
276 * @param {Element} element 277 * @param {Element} element
277 * @param {function()=} onclose 278 * @param {function()=} onclose
278 */ 279 */
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
549 550
550 WebInspector.settings.continuousPainting = /** type {WebInspector.Setting} */ { } 551 WebInspector.settings.continuousPainting = /** type {WebInspector.Setting} */ { }
551 WebInspector.settings.showDebugBorders = /** type {WebInspector.Setting} */ { } 552 WebInspector.settings.showDebugBorders = /** type {WebInspector.Setting} */ { }
552 WebInspector.settings.showScrollBottleneckRects = /** type {WebInspector.Setting } */ { } 553 WebInspector.settings.showScrollBottleneckRects = /** type {WebInspector.Setting } */ { }
553 WebInspector.settings.forceCompositingMode = /** type {WebInspector.Setting} */ { } 554 WebInspector.settings.forceCompositingMode = /** type {WebInspector.Setting} */ { }
554 WebInspector.settings.showFPSCounter = /** type {WebInspector.Setting} */ { } 555 WebInspector.settings.showFPSCounter = /** type {WebInspector.Setting} */ { }
555 WebInspector.settings.showPaintRects = /** type {WebInspector.Setting} */ { } 556 WebInspector.settings.showPaintRects = /** type {WebInspector.Setting} */ { }
556 557
557 /** @type {boolean} */ 558 /** @type {boolean} */
558 window.dispatchStandaloneTestRunnerMessages; 559 window.dispatchStandaloneTestRunnerMessages;
OLDNEW
« no previous file with comments | « Source/devtools/front_end/ScriptFormatterWorker.js ('k') | Source/devtools/scripts/compile_frontend.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698