| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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; |
| OLD | NEW |