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

Unified Diff: third_party/WebKit/Source/devtools/front_end/common/ContentProvider.js

Issue 2440953003: DevTools: use semicolons after each statement. (Closed)
Patch Set: rebaseline Created 4 years, 2 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/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;
-}
+};

Powered by Google App Engine
This is Rietveld 408576698