| 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 5b4df3ea9fcb5525d000eaf259bb3cd12cc0fcc1..303f4885ff00e09e081c73852b4cc85ad340b28b 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/common/ContentProvider.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/common/ContentProvider.js
|
| @@ -36,17 +36,17 @@ Common.ContentProvider.prototype = {
|
| /**
|
| * @return {string}
|
| */
|
| - contentURL: function() {},
|
| + contentURL() {},
|
|
|
| /**
|
| * @return {!Common.ResourceType}
|
| */
|
| - contentType: function() {},
|
| + contentType() {},
|
|
|
| /**
|
| * @return {!Promise<?string>}
|
| */
|
| - requestContent: function() {},
|
| + requestContent() {},
|
|
|
| /**
|
| * @param {string} query
|
| @@ -54,7 +54,7 @@ Common.ContentProvider.prototype = {
|
| * @param {boolean} isRegex
|
| * @param {function(!Array.<!Common.ContentProvider.SearchMatch>)} callback
|
| */
|
| - searchInContent: function(query, caseSensitive, isRegex, callback) {}
|
| + searchInContent(query, caseSensitive, isRegex, callback) {}
|
| };
|
|
|
| /**
|
|
|