| Index: third_party/WebKit/Source/devtools/front_end/emulation/DevicesSettingsTab.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/emulation/DevicesSettingsTab.js b/third_party/WebKit/Source/devtools/front_end/emulation/DevicesSettingsTab.js
|
| index 5d121fc790eaad02e350ac873484b4e0268a9a5a..6e5bcd3d22dbacc3772c2d60ba25c7def667f666 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/emulation/DevicesSettingsTab.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/emulation/DevicesSettingsTab.js
|
| @@ -221,7 +221,7 @@ WebInspector.DevicesSettingsTab.prototype = {
|
| */
|
| function sizeValidator(item, index, input)
|
| {
|
| - return !WebInspector.OverridesSupport.deviceSizeValidator(input.value);
|
| + return !WebInspector.DeviceModeModel.deviceSizeValidator(input.value);
|
| }
|
|
|
| /**
|
| @@ -232,7 +232,7 @@ WebInspector.DevicesSettingsTab.prototype = {
|
| */
|
| function scaleValidator(item, index, input)
|
| {
|
| - return !WebInspector.OverridesSupport.deviceScaleFactorValidator(input.value);
|
| + return !WebInspector.DeviceModeModel.deviceScaleFactorValidator(input.value);
|
| }
|
|
|
| /**
|
|
|