| Index: third_party/WebKit/Source/devtools/front_end/layer_viewer/Layers3DView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/layer_viewer/Layers3DView.js b/third_party/WebKit/Source/devtools/front_end/layer_viewer/Layers3DView.js
|
| index a1ec74fa4a4eb8d0cb02f222a8d844a4cb2479b7..99df1857cd0460e19c71a901bc6821d2ae7ca89a 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/layer_viewer/Layers3DView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/layer_viewer/Layers3DView.js
|
| @@ -68,7 +68,7 @@ WebInspector.Layers3DView = function(layerViewHost)
|
| this._rects = [];
|
|
|
| this._layerViewHost.showInternalLayersSetting().addChangeListener(this._update, this);
|
| -}
|
| +};
|
|
|
| /** @typedef {{borderColor: !Array.<number>, borderWidth: number}} */
|
| WebInspector.Layers3DView.LayerStyle;
|
| @@ -82,7 +82,7 @@ WebInspector.Layers3DView.PaintTile;
|
| WebInspector.Layers3DView.OutlineType = {
|
| Hovered: "hovered",
|
| Selected: "selected"
|
| -}
|
| +};
|
|
|
| /**
|
| * @enum {string}
|
| @@ -92,7 +92,7 @@ WebInspector.Layers3DView.Events = {
|
| LayerSnapshotRequested: Symbol("LayerSnapshotRequested"),
|
| PaintProfilerRequested: Symbol("PaintProfilerRequested"),
|
| ScaleChanged: Symbol("ScaleChanged")
|
| -}
|
| +};
|
|
|
| /**
|
| * @enum {number}
|
| @@ -101,7 +101,7 @@ WebInspector.Layers3DView.ChromeTexture = {
|
| Left: 0,
|
| Middle: 1,
|
| Right: 2
|
| -}
|
| +};
|
|
|
| /**
|
| * @enum {string}
|
| @@ -110,7 +110,7 @@ WebInspector.Layers3DView.ScrollRectTitles = {
|
| RepaintsOnScroll: WebInspector.UIString("repaints on scroll"),
|
| TouchEventHandler: WebInspector.UIString("touch event listener"),
|
| WheelEventHandler: WebInspector.UIString("mousewheel event listener")
|
| -}
|
| +};
|
|
|
| WebInspector.Layers3DView.FragmentShader = "" +
|
| "precision mediump float;\n" +
|
| @@ -811,7 +811,7 @@ WebInspector.Layers3DView.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.VBox.prototype
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -821,12 +821,12 @@ WebInspector.LayerTextureManager = function()
|
| {
|
| WebInspector.Object.call(this);
|
| this.reset();
|
| -}
|
| +};
|
|
|
| /** @enum {symbol} */
|
| WebInspector.LayerTextureManager.Events = {
|
| TextureUpdated: Symbol("TextureUpated")
|
| -}
|
| +};
|
|
|
| WebInspector.LayerTextureManager.prototype = {
|
| reset: function()
|
| @@ -979,7 +979,7 @@ WebInspector.LayerTextureManager.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.Object.prototype
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -996,7 +996,7 @@ WebInspector.Layers3DView.Rectangle = function(relatedObject)
|
| this.fillColor = null;
|
| /** @type {?WebGLTexture} */
|
| this.texture = null;
|
| -}
|
| +};
|
|
|
| WebInspector.Layers3DView.Rectangle.prototype = {
|
| /**
|
| @@ -1090,7 +1090,7 @@ WebInspector.Layers3DView.Rectangle.prototype = {
|
| }
|
| return t;
|
| }
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -1106,4 +1106,4 @@ WebInspector.LayerTextureManager.Tile = function(snapshot, rect, traceEvent)
|
| this.scale = 0;
|
| /** @type {?WebGLTexture} */
|
| this.texture = null;
|
| -}
|
| +};
|
|
|