Chromium Code Reviews| Index: third_party/WebKit/Source/devtools/front_end/components/EditorLineMarkerDecorator.js |
| diff --git a/third_party/WebKit/Source/devtools/front_end/components/EditorLineMarkerDecorator.js b/third_party/WebKit/Source/devtools/front_end/components/EditorLineMarkerDecorator.js |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..2c83f8d97fd48f4f585b50841b9a61c7162cbb21 |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/devtools/front_end/components/EditorLineMarkerDecorator.js |
| @@ -0,0 +1,16 @@ |
| +// Copyright 2016 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +/** |
| + * @interface |
| + */ |
| +WebInspector.EditorLineMarkerDecorator = function() { } |
| + |
| +WebInspector.EditorLineMarkerDecorator.prototype = { |
| + /** |
| + * @param {!Object} data |
| + * @return {!Element} |
| + */ |
| + decorate: function(data) { } |
|
pfeldman
2016/03/09 02:14:20
decorate: function(UISourceCode, CodeMirrorTextEdi
alph
2016/03/09 22:42:18
Done.
|
| +} |