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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sources/RevisionHistoryView.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/sources/RevisionHistoryView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/RevisionHistoryView.js b/third_party/WebKit/Source/devtools/front_end/sources/RevisionHistoryView.js
index 75ae06607abdd364a07b96f37af1540922d20202..d16641529a76c75ec032c3d079b46b636d43ab8d 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/RevisionHistoryView.js
+++ b/third_party/WebKit/Source/devtools/front_end/sources/RevisionHistoryView.js
@@ -56,7 +56,7 @@ WebInspector.RevisionHistoryView = function()
WebInspector.workspace.addEventListener(WebInspector.Workspace.Events.WorkingCopyCommittedByUser, this._revisionAdded, this);
WebInspector.workspace.addEventListener(WebInspector.Workspace.Events.UISourceCodeRemoved, this._uiSourceCodeRemoved, this);
WebInspector.workspace.addEventListener(WebInspector.Workspace.Events.ProjectRemoved, this._projectRemoved, this);
-}
+};
/**
* @param {!WebInspector.UISourceCode} uiSourceCode
@@ -66,7 +66,7 @@ WebInspector.RevisionHistoryView.showHistory = function(uiSourceCode)
WebInspector.viewManager.showView("sources.history");
var historyView = /** @type {!WebInspector.RevisionHistoryView} */ (self.runtime.sharedInstance(WebInspector.RevisionHistoryView));
historyView._revealUISourceCode(uiSourceCode);
-}
+};
WebInspector.RevisionHistoryView.prototype = {
/**
@@ -180,7 +180,7 @@ WebInspector.RevisionHistoryView.prototype = {
},
__proto__: WebInspector.VBox.prototype
-}
+};
/**
* @constructor
@@ -203,7 +203,7 @@ WebInspector.RevisionHistoryTreeElement = function(revision, baseRevision, allow
this._revertElement.addEventListener("click", event => {this._revision.revertToThis();}, false);
if (!allowRevert)
this._revertElement.classList.add("hidden");
-}
+};
WebInspector.RevisionHistoryTreeElement.prototype = {
onattach: function()
@@ -301,4 +301,4 @@ WebInspector.RevisionHistoryTreeElement.prototype = {
},
__proto__: TreeElement.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698