| Index: third_party/WebKit/Source/devtools/front_end/main/RenderingOptions.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/main/RenderingOptions.js b/third_party/WebKit/Source/devtools/front_end/main/RenderingOptions.js
|
| index 35d99109b98cfd99cdae573671c3c26c5d70bb9e..f909785db92d7893b3cd91f85b03ca5e99746566 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/main/RenderingOptions.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/main/RenderingOptions.js
|
| @@ -83,7 +83,7 @@ WebInspector.RenderingOptionsView = function()
|
| this._mediaSelect.disabled = true;
|
|
|
| WebInspector.targetManager.observeTargets(this, WebInspector.Target.Capability.Browser);
|
| -}
|
| +};
|
|
|
| WebInspector.RenderingOptionsView.prototype = {
|
| /**
|
| @@ -154,7 +154,7 @@ WebInspector.RenderingOptionsView.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.VBox.prototype
|
| -}
|
| +};
|
|
|
| /**
|
| * @return {!WebInspector.RenderingOptionsView}
|
| @@ -164,4 +164,4 @@ WebInspector.RenderingOptionsView.instance = function()
|
| if (!WebInspector.RenderingOptionsView._instanceObject)
|
| WebInspector.RenderingOptionsView._instanceObject = new WebInspector.RenderingOptionsView();
|
| return WebInspector.RenderingOptionsView._instanceObject;
|
| -}
|
| +};
|
|
|