| Index: ui/base/layout.h
|
| diff --git a/ui/base/layout.h b/ui/base/layout.h
|
| index fcfb974dad22933c310b95215c122da5f8d68903..32fd88e5886c8e67f69f7bf0007bb3edea1338eb 100644
|
| --- a/ui/base/layout.h
|
| +++ b/ui/base/layout.h
|
| @@ -32,12 +32,15 @@ UI_EXPORT DisplayLayout GetDisplayLayout();
|
|
|
| // Supported UI scale factors for the platform. This is used as an index
|
| // into the array |kScaleFactorScales| which maps the enum value to a float.
|
| +// SCALE_FACTOR_NONE is used for density independent resources such as
|
| +// string, html/js files or an image that can be used for any scales
|
| +// (such as wallpapers).
|
| enum ScaleFactor {
|
| - SCALE_FACTOR_100P = 0,
|
| + SCALE_FACTOR_NONE = 0,
|
| + SCALE_FACTOR_100P,
|
|
|
| // The scale factor used for unscaled binary data, the 1x (default) scale
|
| // factor data packs.
|
| - SCALE_FACTOR_NONE = SCALE_FACTOR_100P,
|
| SCALE_FACTOR_140P,
|
| SCALE_FACTOR_180P,
|
| SCALE_FACTOR_200P,
|
|
|