| Index: ui/aura/monitor_manager.h
|
| diff --git a/ui/aura/monitor_manager.h b/ui/aura/monitor_manager.h
|
| index 257d3aae2e88d3ef0df1c4f01dcd95013991fbbb..40e6bbf0069f8c0a312fb9323093d9d0964be3c7 100644
|
| --- a/ui/aura/monitor_manager.h
|
| +++ b/ui/aura/monitor_manager.h
|
| @@ -68,16 +68,16 @@ class AURA_EXPORT MonitorManager {
|
| const gfx::Display& display) = 0;
|
|
|
| // Returns the display at |index|. The display at 0 is considered "primary".
|
| - virtual const gfx::Display& GetMonitorAt(size_t index) = 0;
|
| + virtual const gfx::Display& GetDisplayAt(size_t index) = 0;
|
|
|
| - virtual size_t GetNumMonitors() const = 0;
|
| + virtual size_t GetNumDisplays() const = 0;
|
|
|
| // Returns the display object nearest given |window|.
|
| - virtual const gfx::Display& GetMonitorNearestWindow(
|
| + virtual const gfx::Display& GetDisplayNearestWindow(
|
| const Window* window) const = 0;
|
|
|
| // Returns the monitor object nearest given |pint|.
|
| - virtual const gfx::Display& GetMonitorNearestPoint(
|
| + virtual const gfx::Display& GetDisplayNearestPoint(
|
| const gfx::Point& point) const = 0;
|
|
|
| protected:
|
|
|