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

Unified Diff: third_party/WebKit/Source/devtools/front_end/bindings/StylesSourceMapping.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/bindings/StylesSourceMapping.js
diff --git a/third_party/WebKit/Source/devtools/front_end/bindings/StylesSourceMapping.js b/third_party/WebKit/Source/devtools/front_end/bindings/StylesSourceMapping.js
index ec0347b4544a503f97722719f725b92268aca056..c8674ad2939d7d91be0b9c2b97f299801caab4a9 100644
--- a/third_party/WebKit/Source/devtools/front_end/bindings/StylesSourceMapping.js
+++ b/third_party/WebKit/Source/devtools/front_end/bindings/StylesSourceMapping.js
@@ -55,7 +55,7 @@ WebInspector.StylesSourceMapping = function(cssModel, workspace, networkMapping)
WebInspector.ResourceTreeModel.fromTarget(cssModel.target()).addEventListener(
WebInspector.ResourceTreeModel.Events.MainFrameNavigated, this._unbindAllUISourceCodes, this)
];
-}
+};
WebInspector.StylesSourceMapping.ChangeUpdateTimeoutMs = 200;
@@ -292,7 +292,7 @@ WebInspector.StylesSourceMapping.prototype = {
{
WebInspector.EventTarget.removeEventListeners(this._eventListeners);
}
-}
+};
/**
* @constructor
@@ -309,7 +309,7 @@ WebInspector.StyleFile = function(uiSourceCode, mapping)
];
this._commitThrottler = new WebInspector.Throttler(WebInspector.StyleFile.updateTimeout);
this._terminated = false;
-}
+};
WebInspector.StyleFile.updateTimeout = 200;
@@ -342,7 +342,7 @@ WebInspector.StyleFile.prototype = {
if (this._terminated)
return;
var promise = this._mapping._setStyleContent(this._uiSourceCode, this._uiSourceCode.workingCopy(), this._isMajorChangePending)
- .then(this._styleContentSet.bind(this))
+ .then(this._styleContentSet.bind(this));
this._isMajorChangePending = false;
return promise;
},
@@ -373,4 +373,4 @@ WebInspector.StyleFile.prototype = {
this._terminated = true;
WebInspector.EventTarget.removeEventListeners(this._eventListeners);
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698