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

Unified Diff: third_party/WebKit/Source/devtools/front_end/network/RequestHeadersView.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/RequestHeadersView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/network/RequestHeadersView.js b/third_party/WebKit/Source/devtools/front_end/network/RequestHeadersView.js
index 048f7caab916afdd601a4a4ac21ed1bca396c4f5..622dff876e70ff36257596c3a78d9c5832aa8cd9 100644
--- a/third_party/WebKit/Source/devtools/front_end/network/RequestHeadersView.js
+++ b/third_party/WebKit/Source/devtools/front_end/network/RequestHeadersView.js
@@ -65,7 +65,7 @@ WebInspector.RequestHeadersView = function(request)
this._queryStringCategory = new WebInspector.RequestHeadersView.Category(root, "queryString", "");
this._formDataCategory = new WebInspector.RequestHeadersView.Category(root, "formData", "");
this._requestPayloadCategory = new WebInspector.RequestHeadersView.Category(root, "requestPayload", WebInspector.UIString("Request Payload"));
-}
+};
WebInspector.RequestHeadersView.prototype = {
wasShown: function()
@@ -493,7 +493,7 @@ WebInspector.RequestHeadersView.prototype = {
},
__proto__: WebInspector.VBox.prototype
-}
+};
/**
* @constructor
@@ -511,7 +511,7 @@ WebInspector.RequestHeadersView.Category = function(root, name, title)
this._expandedSetting = WebInspector.settings.createSetting("request-info-" + name + "-category-expanded", true);
this.expanded = this._expandedSetting.get();
root.appendChild(this);
-}
+};
WebInspector.RequestHeadersView.Category.prototype = {
/**
@@ -536,4 +536,4 @@ WebInspector.RequestHeadersView.Category.prototype = {
},
__proto__: TreeElement.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698