| Index: services/ui/ws/display_manager.h
|
| diff --git a/services/ui/ws/display_manager.h b/services/ui/ws/display_manager.h
|
| index 324ddfc02f4607d9cadf97ddfc93ba0f4b0d98b1..12b78cfd93f03c27d528e2fcb26da40728c019f1 100644
|
| --- a/services/ui/ws/display_manager.h
|
| +++ b/services/ui/ws/display_manager.h
|
| @@ -82,9 +82,15 @@ class DisplayManager : public UserIdTrackerObserver,
|
| const UserId& active_id) override;
|
|
|
| // display::PlatformScreenDelegate:
|
| - void OnDisplayAdded(int64_t id, const gfx::Rect& bounds) override;
|
| + void OnDisplayAdded(int64_t id,
|
| + const gfx::Rect& bounds,
|
| + const gfx::Size& pixel_size,
|
| + float scale_factor) override;
|
| void OnDisplayRemoved(int64_t id) override;
|
| - void OnDisplayModified(int64_t id, const gfx::Rect& bounds) override;
|
| + void OnDisplayModified(int64_t id,
|
| + const gfx::Rect& bounds,
|
| + const gfx::Size& pixel_size,
|
| + float scale_factor) override;
|
|
|
| WindowServer* window_server_;
|
| UserIdTracker* user_id_tracker_;
|
|
|