| 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;
|
| }
|
| -}
|
| +};
|
|
|