OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
3 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. | 3 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. |
4 * Copyright (C) 2009 Joseph Pecoraro | 4 * Copyright (C) 2009 Joseph Pecoraro |
5 * | 5 * |
6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
8 * are met: | 8 * are met: |
9 * | 9 * |
10 * 1. Redistributions of source code must retain the above copyright | 10 * 1. Redistributions of source code must retain the above copyright |
(...skipping 10 matching lines...) Expand all Loading... |
21 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | 21 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
22 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY | 22 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY |
23 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | 23 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
24 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 24 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
25 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 25 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
26 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 /** | 30 /** |
31 * @implements {UI.ViewportElement} | 31 * @implements {Console.ConsoleViewportElement} |
32 * @unrestricted | 32 * @unrestricted |
33 */ | 33 */ |
34 Console.ConsoleViewMessage = class { | 34 Console.ConsoleViewMessage = class { |
35 /** | 35 /** |
36 * @param {!SDK.ConsoleMessage} consoleMessage | 36 * @param {!SDK.ConsoleMessage} consoleMessage |
37 * @param {!Components.Linkifier} linkifier | 37 * @param {!Components.Linkifier} linkifier |
38 * @param {number} nestingLevel | 38 * @param {number} nestingLevel |
39 */ | 39 */ |
40 constructor(consoleMessage, linkifier, nestingLevel) { | 40 constructor(consoleMessage, linkifier, nestingLevel) { |
41 this._message = consoleMessage; | 41 this._message = consoleMessage; |
(...skipping 1223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1265 toMessageElement() { | 1265 toMessageElement() { |
1266 if (!this._element) { | 1266 if (!this._element) { |
1267 super.toMessageElement(); | 1267 super.toMessageElement(); |
1268 this._expandGroupIcon = UI.Icon.create('', 'expand-group-icon'); | 1268 this._expandGroupIcon = UI.Icon.create('', 'expand-group-icon'); |
1269 this._contentElement.insertBefore(this._expandGroupIcon, this._contentElem
ent.firstChild); | 1269 this._contentElement.insertBefore(this._expandGroupIcon, this._contentElem
ent.firstChild); |
1270 this.setCollapsed(this._collapsed); | 1270 this.setCollapsed(this._collapsed); |
1271 } | 1271 } |
1272 return this._element; | 1272 return this._element; |
1273 } | 1273 } |
1274 }; | 1274 }; |
OLD | NEW |