| Index: Source/devtools/front_end/common/TextUtils.js
|
| diff --git a/Source/devtools/front_end/common/TextUtils.js b/Source/devtools/front_end/common/TextUtils.js
|
| index 12c47459a403b6c56d61582a597bcad5e1c464ff..2310478a50c4635b92e7d5122205c2b76a7f31ac 100644
|
| --- a/Source/devtools/front_end/common/TextUtils.js
|
| +++ b/Source/devtools/front_end/common/TextUtils.js
|
| @@ -226,3 +226,16 @@ WebInspector.TextUtils.BalancedJSONTokenizer.prototype = {
|
| return this._buffer;
|
| }
|
| }
|
| +
|
| +/**
|
| + * @interface
|
| + */
|
| +WebInspector.TokenizerFactory = function() { }
|
| +
|
| +WebInspector.TokenizerFactory.prototype = {
|
| + /**
|
| + * @param {string} mimeType
|
| + * @return {function(string, function(string, ?string, number, number))}
|
| + */
|
| + createTokenizer: function(mimeType) { }
|
| +}
|
|
|