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

Unified Diff: third_party/WebKit/Source/devtools/front_end/network/NetworkItemView.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/network/NetworkItemView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/network/NetworkItemView.js b/third_party/WebKit/Source/devtools/front_end/network/NetworkItemView.js
index 384ceed88019c9c21476f5327f684c32cc1a7b23..34b8501bf4afbc5a1ef1b06a2b8f0efb705345d6 100644
--- a/third_party/WebKit/Source/devtools/front_end/network/NetworkItemView.js
+++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkItemView.js
@@ -67,7 +67,7 @@ WebInspector.NetworkItemView = function(request, calculator)
this.appendTab("timing", WebInspector.UIString("Timing"), new WebInspector.RequestTimingView(request, calculator));
this._request = request;
-}
+};
WebInspector.NetworkItemView.prototype = {
wasShown: function()
@@ -105,7 +105,7 @@ WebInspector.NetworkItemView.prototype = {
},
__proto__: WebInspector.TabbedPane.prototype
-}
+};
/**
* @constructor
@@ -115,7 +115,7 @@ WebInspector.NetworkItemView.prototype = {
WebInspector.RequestContentView = function(request)
{
WebInspector.RequestView.call(this, request);
-}
+};
WebInspector.RequestContentView.prototype = {
wasShown: function()
@@ -148,4 +148,4 @@ WebInspector.RequestContentView.prototype = {
},
__proto__: WebInspector.RequestView.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698