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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/SearchableView.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/ui/SearchableView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/SearchableView.js b/third_party/WebKit/Source/devtools/front_end/ui/SearchableView.js
index d68913b3b4b5fbe13f96aa64cd9a1783ad3380de..733335ee6ed6d876313164090175ce3023a94dd9 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/SearchableView.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/SearchableView.js
@@ -143,7 +143,7 @@ WebInspector.SearchableView = function(searchable, settingName)
this._minimalSearchQuerySize = 3;
this._loadSetting();
-}
+};
WebInspector.SearchableView._lastUniqueId = 0;
@@ -161,7 +161,7 @@ WebInspector.SearchableView.fromElement = function(element)
element = element.parentElementOrShadowHost();
}
return view;
-}
+};
WebInspector.SearchableView.prototype = {
_toggleCaseSensitiveSearch: function()
@@ -556,14 +556,14 @@ WebInspector.SearchableView.prototype = {
},
__proto__: WebInspector.VBox.prototype
-}
+};
/**
* @interface
*/
WebInspector.Searchable = function()
{
-}
+};
WebInspector.Searchable.prototype = {
searchCanceled: function() { },
@@ -588,14 +588,14 @@ WebInspector.Searchable.prototype = {
* @return {boolean}
*/
supportsRegexSearch: function() { }
-}
+};
/**
* @interface
*/
WebInspector.Replaceable = function()
{
-}
+};
WebInspector.Replaceable.prototype = {
/**
@@ -609,7 +609,7 @@ WebInspector.Replaceable.prototype = {
* @param {string} replacement
*/
replaceAllWith: function(searchConfig, replacement) { }
-}
+};
/**
* @constructor
@@ -622,7 +622,7 @@ WebInspector.SearchableView.SearchConfig = function(query, caseSensitive, isRege
this.query = query;
this.caseSensitive = caseSensitive;
this.isRegex = isRegex;
-}
+};
WebInspector.SearchableView.SearchConfig.prototype = {
/**
@@ -654,4 +654,4 @@ WebInspector.SearchableView.SearchConfig.prototype = {
return regex;
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698