Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(631)

Unified Diff: third_party/WebKit/Source/devtools/front_end/components/EditorLineMarkerDecorator.js

Issue 1768183003: DevTools: Support line markers in UISourceCode and Code Mirror (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: wrap setGutterMarker's in an operation. Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.
+}

Powered by Google App Engine
This is Rietveld 408576698