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

Unified Diff: third_party/WebKit/Source/devtools/front_end/components_lazy/LineLevelProfile.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/components_lazy/LineLevelProfile.js
diff --git a/third_party/WebKit/Source/devtools/front_end/components_lazy/LineLevelProfile.js b/third_party/WebKit/Source/devtools/front_end/components_lazy/LineLevelProfile.js
index a8923ee2c0a3581d4d2b4942cd007b25ae6cefc3..19961aaff799dde0f9a313e8772955664cb16d80 100644
--- a/third_party/WebKit/Source/devtools/front_end/components_lazy/LineLevelProfile.js
+++ b/third_party/WebKit/Source/devtools/front_end/components_lazy/LineLevelProfile.js
@@ -9,7 +9,7 @@ WebInspector.LineLevelProfile = function()
{
this._locationPool = new WebInspector.LiveLocationPool();
this.reset();
-}
+};
/**
* @return {!WebInspector.LineLevelProfile}
@@ -19,7 +19,7 @@ WebInspector.LineLevelProfile.instance = function()
if (!WebInspector.LineLevelProfile._instance)
WebInspector.LineLevelProfile._instance = new WebInspector.LineLevelProfile();
return WebInspector.LineLevelProfile._instance;
-}
+};
WebInspector.LineLevelProfile.prototype = {
/**
@@ -94,7 +94,7 @@ WebInspector.LineLevelProfile.prototype = {
}
}
}
-}
+};
/**
* @constructor
@@ -106,7 +106,7 @@ WebInspector.LineLevelProfile.Presentation = function(rawLocation, time, locatio
{
this._time = time;
WebInspector.debuggerWorkspaceBinding.createLiveLocation(rawLocation, this.updateLocation.bind(this), locationPool);
-}
+};
WebInspector.LineLevelProfile.Presentation.prototype = {
/**
@@ -120,7 +120,7 @@ WebInspector.LineLevelProfile.Presentation.prototype = {
if (this._uiLocation)
this._uiLocation.uiSourceCode.addLineDecoration(this._uiLocation.lineNumber, WebInspector.LineLevelProfile.LineDecorator.type, this._time);
}
-}
+};
/**
* @constructor
@@ -128,7 +128,7 @@ WebInspector.LineLevelProfile.Presentation.prototype = {
*/
WebInspector.LineLevelProfile.LineDecorator = function()
{
-}
+};
WebInspector.LineLevelProfile.LineDecorator.type = "performance";
@@ -156,4 +156,4 @@ WebInspector.LineLevelProfile.LineDecorator.prototype = {
textEditor.setGutterDecoration(decoration.line(), gutterType, element);
}
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698