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

Unified Diff: third_party/WebKit/Source/devtools/front_end/elements/PropertiesWidget.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/elements/PropertiesWidget.js
diff --git a/third_party/WebKit/Source/devtools/front_end/elements/PropertiesWidget.js b/third_party/WebKit/Source/devtools/front_end/elements/PropertiesWidget.js
index 3080b63208e98f15c91086ad967775793e759390..052982fc650d1ab93772fb3a4271007d326eeb74 100644
--- a/third_party/WebKit/Source/devtools/front_end/elements/PropertiesWidget.js
+++ b/third_party/WebKit/Source/devtools/front_end/elements/PropertiesWidget.js
@@ -42,7 +42,7 @@ WebInspector.PropertiesWidget = function()
WebInspector.context.addFlavorChangeListener(WebInspector.DOMNode, this._setNode, this);
this._node = WebInspector.context.flavor(WebInspector.DOMNode);
this.update();
-}
+};
WebInspector.PropertiesWidget._objectGroupName = "properties-sidebar-pane";
@@ -76,7 +76,7 @@ WebInspector.PropertiesWidget.prototype = {
this._lastRequestedNode = this._node;
return this._node.resolveToObjectPromise(WebInspector.PropertiesWidget._objectGroupName)
- .then(nodeResolved.bind(this))
+ .then(nodeResolved.bind(this));
/**
* @param {?WebInspector.RemoteObject} object
@@ -183,4 +183,4 @@ WebInspector.PropertiesWidget.prototype = {
},
__proto__: WebInspector.ThrottledWidget.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698