| Index: Source/devtools/front_end/components/DOMPresentationUtils.js
|
| diff --git a/Source/devtools/front_end/components/DOMPresentationUtils.js b/Source/devtools/front_end/components/DOMPresentationUtils.js
|
| index 178fb284b5ddd2655c23792beabcb7841497fb64..dda7c00a0753c1d8c9dd5b21831c585c3daf0561 100644
|
| --- a/Source/devtools/front_end/components/DOMPresentationUtils.js
|
| +++ b/Source/devtools/front_end/components/DOMPresentationUtils.js
|
| @@ -609,3 +609,18 @@ WebInspector.DOMNodePathStep.prototype = {
|
| return this.value;
|
| }
|
| }
|
| +
|
| +/**
|
| + * @interface
|
| + */
|
| +WebInspector.DOMPresentationUtils.MarkerDecorator = function()
|
| +{
|
| +}
|
| +
|
| +WebInspector.DOMPresentationUtils.MarkerDecorator.prototype = {
|
| + /**
|
| + * @param {!WebInspector.DOMNode} node
|
| + * @return {?string}
|
| + */
|
| + decorate: function(node) { }
|
| +}
|
|
|