| Index: third_party/WebKit/Source/devtools/front_end/common/ContentProvider.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/common/ContentProvider.js b/third_party/WebKit/Source/devtools/front_end/common/ContentProvider.js
|
| index 7d38958603c5b6ed2232c74aea1683a0cd2e0e62..2762489445669d8ac13cb733302645eb6fb8e322 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/common/ContentProvider.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/common/ContentProvider.js
|
| @@ -31,7 +31,7 @@
|
| /**
|
| * @interface
|
| */
|
| -WebInspector.ContentProvider = function() { }
|
| +WebInspector.ContentProvider = function() { };
|
|
|
| WebInspector.ContentProvider.prototype = {
|
| /**
|
| @@ -56,7 +56,7 @@ WebInspector.ContentProvider.prototype = {
|
| * @param {function(!Array.<!WebInspector.ContentProvider.SearchMatch>)} callback
|
| */
|
| searchInContent: function(query, caseSensitive, isRegex, callback) { }
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -66,7 +66,7 @@ WebInspector.ContentProvider.prototype = {
|
| WebInspector.ContentProvider.SearchMatch = function(lineNumber, lineContent) {
|
| this.lineNumber = lineNumber;
|
| this.lineContent = lineContent;
|
| -}
|
| +};
|
|
|
| /**
|
| * @param {string} content
|
| @@ -88,7 +88,7 @@ WebInspector.ContentProvider.performSearchInContent = function(content, query, c
|
| result.push(new WebInspector.ContentProvider.SearchMatch(i, lineContent));
|
| }
|
| return result;
|
| -}
|
| +};
|
|
|
| /**
|
| * @param {?string} content
|
| @@ -104,4 +104,4 @@ WebInspector.ContentProvider.contentAsDataURL = function(content, mimeType, cont
|
| return null;
|
|
|
| return "data:" + mimeType + (charset ? ";charset=" + charset : "") + (contentEncoded ? ";base64" : "") + "," + content;
|
| -}
|
| +};
|
|
|