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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/TextPrompt.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/TextPrompt.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/TextPrompt.js b/third_party/WebKit/Source/devtools/front_end/ui/TextPrompt.js
index 3b03a39af3a76e3b360f30c544051d29c4086e81..8aa4cc24b78023195d7216596178462f10e88565 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/TextPrompt.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/TextPrompt.js
@@ -48,7 +48,7 @@ WebInspector.TextPrompt = function(completions, stopCharacters)
this._previousText = "";
this._currentHintText = "";
this._completionRequestId = 0;
-}
+};
WebInspector.TextPrompt.DefaultAutocompletionTimeout = 250;
@@ -785,7 +785,7 @@ WebInspector.TextPrompt.prototype = {
},
__proto__: WebInspector.Object.prototype
-}
+};
/**
@@ -800,7 +800,7 @@ WebInspector.TextPromptWithHistory = function(completions, stopCharacters)
this._history = new WebInspector.HistoryManager();
this._addCompletionsFromHistory = true;
-}
+};
WebInspector.TextPromptWithHistory.prototype = {
/**
@@ -904,7 +904,7 @@ WebInspector.TextPromptWithHistory.prototype = {
},
__proto__: WebInspector.TextPrompt.prototype
-}
+};
/**
* @constructor
@@ -921,7 +921,7 @@ WebInspector.HistoryManager = function()
* @type {number}
*/
this._historyOffset = 1;
-}
+};
WebInspector.HistoryManager.prototype = {
/**

Powered by Google App Engine
This is Rietveld 408576698