| 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) 2008 Matt Lilek <webkit@mattlilek.com> | 4 * Copyright (C) 2008 Matt Lilek <webkit@mattlilek.com> |
| 5 * Copyright (C) 2009 Joseph Pecoraro | 5 * Copyright (C) 2009 Joseph Pecoraro |
| 6 * | 6 * |
| 7 * Redistribution and use in source and binary forms, with or without | 7 * Redistribution and use in source and binary forms, with or without |
| 8 * modification, are permitted provided that the following conditions | 8 * modification, are permitted provided that the following conditions |
| 9 * are met: | 9 * are met: |
| 10 * | 10 * |
| (...skipping 602 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 613 /** | 613 /** |
| 614 * @interface | 614 * @interface |
| 615 */ | 615 */ |
| 616 WebInspector.DOMPresentationUtils.MarkerDecorator = function() | 616 WebInspector.DOMPresentationUtils.MarkerDecorator = function() |
| 617 { | 617 { |
| 618 } | 618 } |
| 619 | 619 |
| 620 WebInspector.DOMPresentationUtils.MarkerDecorator.prototype = { | 620 WebInspector.DOMPresentationUtils.MarkerDecorator.prototype = { |
| 621 /** | 621 /** |
| 622 * @param {!WebInspector.DOMNode} node | 622 * @param {!WebInspector.DOMNode} node |
| 623 * @return {?string} | 623 * @return {?{title: string, color: string}} |
| 624 */ | 624 */ |
| 625 decorate: function(node) { } | 625 decorate: function(node) { } |
| 626 } | 626 } |
| OLD | NEW |