diff options
author | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-27 23:53:10 +0000 |
---|---|---|
committer | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-27 23:53:10 +0000 |
commit | 66b05eac19ce1fc251b4cdb174452ab8928f0b01 (patch) | |
tree | 6f7e447a2590b29b05246b1e02f2e03b39a7e07c /ui/gfx/display.h | |
parent | 39e71a62e992a5f74e0a7f0df74f034cd442b8d7 (diff) | |
download | chromium_src-66b05eac19ce1fc251b4cdb174452ab8928f0b01.zip chromium_src-66b05eac19ce1fc251b4cdb174452ab8928f0b01.tar.gz chromium_src-66b05eac19ce1fc251b4cdb174452ab8928f0b01.tar.bz2 |
Use virtual screen coordinates in Display::bounds
BUG=123160
TEST=monitor_controller_unittests
Review URL: https://chromiumcodereview.appspot.com/10696002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@144613 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/gfx/display.h')
-rw-r--r-- | ui/gfx/display.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ui/gfx/display.h b/ui/gfx/display.h index 0bc2630..7861ab4 100644 --- a/ui/gfx/display.h +++ b/ui/gfx/display.h @@ -75,9 +75,8 @@ class UI_EXPORT Display { gfx::Size GetSizeInPixel() const; #if defined(USE_AURA) - // TODO(oshima): |bounds()| on ash is not screen's coordinate and - // this is an workaround for this. This will be removed when ash - // has true multi display support. crbug.com/119268. + // TODO(oshima|skuhne): Eliminate the use of bounds_in_pixel in events_x.cc + // and remove bounds_in_pixel from gfx::Display. // Returns the display's bounds in pixel coordinates. const Rect& bounds_in_pixel() const { return bounds_in_pixel_; } #endif |