| Index: Source/devtools/front_end/components/HandlerRegistry.js
|
| diff --git a/Source/devtools/front_end/components/HandlerRegistry.js b/Source/devtools/front_end/components/HandlerRegistry.js
|
| index 52eeaed9670630d2d72a06cb94c7e8129b293597..9952c813eb8cbea36c2f0e3820ce16f9107c0157 100644
|
| --- a/Source/devtools/front_end/components/HandlerRegistry.js
|
| +++ b/Source/devtools/front_end/components/HandlerRegistry.js
|
| @@ -298,14 +298,13 @@ WebInspector.HandlerRegistry.LinkHandler.prototype = {
|
|
|
| /**
|
| * @constructor
|
| - * @extends {WebInspector.UISettingDelegate}
|
| + * @implements {WebInspector.SettingUI}
|
| */
|
| -WebInspector.HandlerRegistry.OpenAnchorLocationSettingDelegate = function()
|
| +WebInspector.HandlerRegistry.OpenAnchorLocationSettingUI = function()
|
| {
|
| - WebInspector.UISettingDelegate.call(this);
|
| }
|
|
|
| -WebInspector.HandlerRegistry.OpenAnchorLocationSettingDelegate.prototype = {
|
| +WebInspector.HandlerRegistry.OpenAnchorLocationSettingUI.prototype = {
|
| /**
|
| * @override
|
| * @return {?Element}
|
| @@ -317,9 +316,7 @@ WebInspector.HandlerRegistry.OpenAnchorLocationSettingDelegate.prototype = {
|
|
|
| var handlerSelector = new WebInspector.HandlerSelector(WebInspector.openAnchorLocationRegistry);
|
| return WebInspector.SettingsUI.createCustomSetting(WebInspector.UIString("Open links in"), handlerSelector.element);
|
| - },
|
| -
|
| - __proto__: WebInspector.UISettingDelegate.prototype
|
| + }
|
| }
|
|
|
| /**
|
|
|