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

Unified Diff: third_party/WebKit/Source/devtools/front_end/bindings/LiveLocation.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/bindings/LiveLocation.js
diff --git a/third_party/WebKit/Source/devtools/front_end/bindings/LiveLocation.js b/third_party/WebKit/Source/devtools/front_end/bindings/LiveLocation.js
index 12625e1b3189855ba2e7e7f567b0b07a0fcd7ccc..85e252788f7c35e5898df97d56eb97f3188b8661 100644
--- a/third_party/WebKit/Source/devtools/front_end/bindings/LiveLocation.js
+++ b/third_party/WebKit/Source/devtools/front_end/bindings/LiveLocation.js
@@ -3,7 +3,7 @@
// found in the LICENSE file.
/** @interface */
-WebInspector.LiveLocation = function() {}
+WebInspector.LiveLocation = function() {};
WebInspector.LiveLocation.prototype = {
update: function() {},
@@ -19,7 +19,7 @@ WebInspector.LiveLocation.prototype = {
* @return {boolean}
*/
isBlackboxed: function() {}
-}
+};
/**
* @constructor
@@ -32,7 +32,7 @@ WebInspector.LiveLocationWithPool = function(updateDelegate, locationPool)
this._updateDelegate = updateDelegate;
this._locationPool = locationPool;
this._locationPool._add(this);
-}
+};
WebInspector.LiveLocationWithPool.prototype = {
/**
@@ -69,7 +69,7 @@ WebInspector.LiveLocationWithPool.prototype = {
{
throw "Not implemented";
}
-}
+};
/**
* @constructor
@@ -77,7 +77,7 @@ WebInspector.LiveLocationWithPool.prototype = {
WebInspector.LiveLocationPool = function()
{
this._locations = new Set();
-}
+};
WebInspector.LiveLocationPool.prototype = {
/**
@@ -101,4 +101,4 @@ WebInspector.LiveLocationPool.prototype = {
for (var location of this._locations)
location.dispose();
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698