OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef WIN8_METRO_DRIVER_CHROME_APP_VIEW_ASH_H_ | 5 #ifndef WIN8_METRO_DRIVER_CHROME_APP_VIEW_ASH_H_ |
6 #define WIN8_METRO_DRIVER_CHROME_APP_VIEW_ASH_H_ | 6 #define WIN8_METRO_DRIVER_CHROME_APP_VIEW_ASH_H_ |
7 | 7 |
8 #include <windows.applicationmodel.core.h> | 8 #include <windows.applicationmodel.core.h> |
9 #include <windows.ui.core.h> | 9 #include <windows.ui.core.h> |
10 #include <windows.ui.input.h> | 10 #include <windows.ui.input.h> |
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
225 | 225 |
226 // The actual window behind the view surface. | 226 // The actual window behind the view surface. |
227 HWND core_window_hwnd_; | 227 HWND core_window_hwnd_; |
228 | 228 |
229 // UI message loop to allow message passing into this thread. | 229 // UI message loop to allow message passing into this thread. |
230 base::MessageLoopForUI ui_loop_; | 230 base::MessageLoopForUI ui_loop_; |
231 | 231 |
232 // For IME support. | 232 // For IME support. |
233 scoped_ptr<metro_driver::InputSource> input_source_; | 233 scoped_ptr<metro_driver::InputSource> input_source_; |
234 scoped_ptr<metro_driver::TextService> text_service_; | 234 scoped_ptr<metro_driver::TextService> text_service_; |
| 235 |
| 236 // The device scale factor. |
| 237 float scale_; |
235 }; | 238 }; |
236 | 239 |
237 #endif // WIN8_METRO_DRIVER_CHROME_APP_VIEW_ASH_H_ | 240 #endif // WIN8_METRO_DRIVER_CHROME_APP_VIEW_ASH_H_ |
OLD | NEW |