| Index: win8/metro_driver/chrome_app_view_ash.h
|
| diff --git a/win8/metro_driver/chrome_app_view_ash.h b/win8/metro_driver/chrome_app_view_ash.h
|
| index 174836d5fc382634c834e25e275c5b5382cd3031..102d010c1d5b7b522bc9936f8ca00c544b19ec4c 100644
|
| --- a/win8/metro_driver/chrome_app_view_ash.h
|
| +++ b/win8/metro_driver/chrome_app_view_ash.h
|
| @@ -233,8 +233,11 @@ class ChromeAppViewAsh
|
| scoped_ptr<metro_driver::InputSource> input_source_;
|
| scoped_ptr<metro_driver::TextService> text_service_;
|
|
|
| - // The device scale factor.
|
| - float scale_;
|
| + // The metro device scale factor as reported by the winrt interfaces.
|
| + float metro_dpi_scale_;
|
| + // The win32 dpi scale which is queried via GetDeviceCaps. Please refer to
|
| + // ui/gfx/win/dpi.cc for more information.
|
| + float win32_dpi_scale_;
|
| };
|
|
|
| #endif // WIN8_METRO_DRIVER_CHROME_APP_VIEW_ASH_H_
|
|
|