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

Unified Diff: third_party/WebKit/Source/devtools/front_end/common/Object.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/common/Object.js
diff --git a/third_party/WebKit/Source/devtools/front_end/common/Object.js b/third_party/WebKit/Source/devtools/front_end/common/Object.js
index 86495350547ee75a4d050eeab26791ea2c9dbef9..698fbcd4d22ce2d0e993d9e70d37a60f05cea8f8 100644
--- a/third_party/WebKit/Source/devtools/front_end/common/Object.js
+++ b/third_party/WebKit/Source/devtools/front_end/common/Object.js
@@ -28,7 +28,7 @@
* @implements {WebInspector.EventTarget}
*/
WebInspector.Object = function() {
-}
+};
WebInspector.Object.prototype = {
/**
@@ -112,7 +112,7 @@ WebInspector.Object.prototype = {
return event.defaultPrevented;
}
-}
+};
/**
* @constructor
@@ -127,7 +127,7 @@ WebInspector.Event = function(target, type, data)
this.data = data;
this.defaultPrevented = false;
this._stoppedPropagation = false;
-}
+};
WebInspector.Event.prototype = {
stopPropagation: function()
@@ -149,14 +149,14 @@ WebInspector.Event.prototype = {
if (preventDefault)
this.preventDefault();
}
-}
+};
/**
* @interface
*/
WebInspector.EventTarget = function()
{
-}
+};
/**
* @param {!Array<!WebInspector.EventTarget.EventDescriptor>} eventList
@@ -169,7 +169,7 @@ WebInspector.EventTarget.removeEventListeners = function(eventList)
}
// Do not hold references on unused event descriptors.
eventList.splice(0, eventList.length);
-}
+};
WebInspector.EventTarget.prototype = {
/**
@@ -201,7 +201,7 @@ WebInspector.EventTarget.prototype = {
* @return {boolean}
*/
dispatchEventToListeners: function(eventType, eventData) { },
-}
+};
/**
* @constructor
@@ -216,4 +216,4 @@ WebInspector.EventTarget.EventDescriptor = function(eventTarget, eventType, rece
this.eventType = eventType;
this.receiver = receiver;
this.method = method;
-}
+};

Powered by Google App Engine
This is Rietveld 408576698