Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / devtools / front_end / TextEditor.js
index 51e8700..7771e8a 100644 (file)
@@ -355,3 +355,16 @@ WebInspector.TextEditorDelegate.prototype = {
      */
     onJumpToPosition: function(from, to) { }
 }
+
+/**
+ * @interface
+ */
+WebInspector.TokenizerFactory = function() { }
+
+WebInspector.TokenizerFactory.prototype = {
+    /**
+     * @param {string} mimeType
+     * @return {function(string, function(string, ?string, number, number))}
+     */
+    createTokenizer: function(mimeType) { }
+}
\ No newline at end of file