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

Unified Diff: third_party/WebKit/Source/devtools/front_end/emulation/MediaQueryInspector.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/emulation/MediaQueryInspector.js
diff --git a/third_party/WebKit/Source/devtools/front_end/emulation/MediaQueryInspector.js b/third_party/WebKit/Source/devtools/front_end/emulation/MediaQueryInspector.js
index 9dd1fa9784e6f260bee48967c32bd770a01b38e7..8eb27345170eeebdb9510675a663ed098a4e5458 100644
--- a/third_party/WebKit/Source/devtools/front_end/emulation/MediaQueryInspector.js
+++ b/third_party/WebKit/Source/devtools/front_end/emulation/MediaQueryInspector.js
@@ -24,7 +24,7 @@ WebInspector.MediaQueryInspector = function(getWidthCallback, setWidthCallback)
WebInspector.targetManager.observeTargets(this);
WebInspector.zoomManager.addEventListener(WebInspector.ZoomManager.Events.ZoomChanged, this._renderMediaQueries.bind(this), this);
-}
+};
/**
* @enum {number}
@@ -33,7 +33,7 @@ WebInspector.MediaQueryInspector.Section = {
Max: 0,
MinMax: 1,
Min: 2
-}
+};
WebInspector.MediaQueryInspector.prototype = {
/**
@@ -158,7 +158,7 @@ WebInspector.MediaQueryInspector.prototype = {
return Promise.resolve();
return this._cssModel.mediaQueriesPromise()
- .then(this._rebuildMediaQueries.bind(this))
+ .then(this._rebuildMediaQueries.bind(this));
},
/**
@@ -344,7 +344,7 @@ WebInspector.MediaQueryInspector.MediaQueryUIModel = function(cssMedia, minWidth
this._section = WebInspector.MediaQueryInspector.Section.MinMax;
else
this._section = WebInspector.MediaQueryInspector.Section.Min;
-}
+};
/**
* @param {!WebInspector.CSSMedia} cssMedia
@@ -376,7 +376,7 @@ WebInspector.MediaQueryInspector.MediaQueryUIModel.createFromMediaQuery = functi
return null;
return new WebInspector.MediaQueryInspector.MediaQueryUIModel(cssMedia, minWidthExpression, maxWidthExpression, mediaQuery.active());
-}
+};
WebInspector.MediaQueryInspector.MediaQueryUIModel.prototype = {
/**
@@ -476,4 +476,4 @@ WebInspector.MediaQueryInspector.MediaQueryUIModel.prototype = {
{
return this._active;
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698