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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/Popover.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/Popover.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/Popover.js b/third_party/WebKit/Source/devtools/front_end/ui/Popover.js
index 1880a3f26ff6b8679caa4591935b0bae1def7563..e41df7d5de27db1eec9f1248d691c065ffc09abe 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/Popover.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/Popover.js
@@ -45,7 +45,7 @@ WebInspector.Popover = function(popoverHelper)
this._popoverHelper = popoverHelper;
this._hideBound = this.hide.bind(this);
-}
+};
WebInspector.Popover._classNamePrefix = "popover";
@@ -249,7 +249,7 @@ WebInspector.Popover.prototype = {
},
__proto__: WebInspector.Widget.prototype
-}
+};
/**
* @constructor
@@ -269,7 +269,7 @@ WebInspector.PopoverHelper = function(panelElement, getAnchor, showPopover, onHi
panelElement.addEventListener("mousemove", this._mouseMove.bind(this), false);
panelElement.addEventListener("mouseout", this._mouseOut.bind(this), false);
this.setTimeout(1000, 500);
-}
+};
WebInspector.PopoverHelper.prototype = {
/**
@@ -418,10 +418,10 @@ WebInspector.PopoverHelper.prototype = {
this._resetHoverTimer();
}
}
-}
+};
/** @enum {string} */
WebInspector.Popover.Orientation = {
Top: "top",
Bottom: "bottom"
-}
+};

Powered by Google App Engine
This is Rietveld 408576698