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

Unified Diff: third_party/WebKit/Source/devtools/front_end/profiler/ProfileTypeRegistry.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/profiler/ProfileTypeRegistry.js
diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/ProfileTypeRegistry.js b/third_party/WebKit/Source/devtools/front_end/profiler/ProfileTypeRegistry.js
index 775359dea6196558e69ace89d813f3e77a773851..343971094392c344c67b29889bbf72b8bd1e4856 100644
--- a/third_party/WebKit/Source/devtools/front_end/profiler/ProfileTypeRegistry.js
+++ b/third_party/WebKit/Source/devtools/front_end/profiler/ProfileTypeRegistry.js
@@ -17,7 +17,7 @@ WebInspector.ProfileTypeRegistry = function()
this._addProfileType(this.trackingHeapSnapshotProfileType);
this.samplingHeapProfileType = new WebInspector.SamplingHeapProfileType();
this._addProfileType(this.samplingHeapProfileType);
-}
+};
WebInspector.ProfileTypeRegistry.prototype = {
/**
@@ -35,6 +35,6 @@ WebInspector.ProfileTypeRegistry.prototype = {
{
return this._profileTypes;
}
-}
+};
WebInspector.ProfileTypeRegistry.instance = new WebInspector.ProfileTypeRegistry();

Powered by Google App Engine
This is Rietveld 408576698