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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/InplaceEditor.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/InplaceEditor.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/InplaceEditor.js b/third_party/WebKit/Source/devtools/front_end/ui/InplaceEditor.js
index ed4e6cc1d1a0bb668115deb1d3405ad18bf63a97..0ef59c46781da1653dd0e61210ce9863cde1bcc6 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/InplaceEditor.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/InplaceEditor.js
@@ -7,7 +7,7 @@
*/
WebInspector.InplaceEditor = function()
{
-}
+};
/**
* @typedef {{cancel: function(), commit: function(), setWidth: function(number)}}
@@ -24,7 +24,7 @@ WebInspector.InplaceEditor.startEditing = function(element, config)
if (!WebInspector.InplaceEditor._defaultInstance)
WebInspector.InplaceEditor._defaultInstance = new WebInspector.InplaceEditor();
return WebInspector.InplaceEditor._defaultInstance.startEditing(element, config);
-}
+};
/**
* @param {!Element} element
@@ -46,7 +46,7 @@ WebInspector.InplaceEditor.startMultilineEditing = function(element, config)
return Promise.reject(new Error("Editing is already in progress"));
return controller;
}
-}
+};
WebInspector.InplaceEditor.prototype = {
/**
@@ -236,7 +236,7 @@ WebInspector.InplaceEditor.prototype = {
this.augmentEditingHandle(editingContext, handle);
return handle;
}
-}
+};
/**
* @constructor
@@ -267,7 +267,7 @@ WebInspector.InplaceEditor.Config = function(commitHandler, cancelHandler, conte
* @type {function(!Event):string|undefined}
*/
this.postKeydownFinishHandler;
-}
+};
WebInspector.InplaceEditor.Config.prototype = {
setPasteHandler: function(pasteHandler)
@@ -299,4 +299,4 @@ WebInspector.InplaceEditor.Config.prototype = {
{
this.postKeydownFinishHandler = postKeydownFinishHandler;
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698