| Index: Source/devtools/front_end/SettingsScreen.js
|
| diff --git a/Source/devtools/front_end/SettingsScreen.js b/Source/devtools/front_end/SettingsScreen.js
|
| index 172138e18ef99abf27516672be149b85a8429614..38e254880a573f17e189a710b569255f90c25c66 100644
|
| --- a/Source/devtools/front_end/SettingsScreen.js
|
| +++ b/Source/devtools/front_end/SettingsScreen.js
|
| @@ -687,6 +687,7 @@ WebInspector.SettingsController.SettingsScreenActionDelegate.prototype = {
|
| /**
|
| * @constructor
|
| * @extends {WebInspector.Object}
|
| + * @param {!Array.<string>} columns
|
| * @param {function(!Element, string, ?string)} itemRenderer
|
| */
|
| WebInspector.SettingsList = function(columns, itemRenderer)
|
| @@ -861,6 +862,8 @@ WebInspector.SettingsList.prototype = {
|
| /**
|
| * @constructor
|
| * @extends {WebInspector.SettingsList}
|
| + * @param {!Array.<string>} columns
|
| + * @param {function(string, string):string} valuesProvider
|
| * @param {function(?string, !Object)} validateHandler
|
| * @param {function(?string, !Object)} editHandler
|
| */
|
| @@ -1020,6 +1023,7 @@ WebInspector.EditableSettingsList.prototype = {
|
|
|
| /**
|
| * @param {string} itemId
|
| + * @param {!Event} event
|
| */
|
| _editMappingBlur: function(itemId, event)
|
| {
|
|
|