diff options
author | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-14 18:22:44 +0000 |
---|---|---|
committer | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-14 18:22:44 +0000 |
commit | 8a45c9775a4ccf87bf30a73df8954fe9446d6e2a (patch) | |
tree | fd100c56b428bb56b19f47291d95e4466d10e8bf /ash/screen_ash.h | |
parent | 23589b731fa97a94db920670795c9c91250c25f1 (diff) | |
download | chromium_src-8a45c9775a4ccf87bf30a73df8954fe9446d6e2a.zip chromium_src-8a45c9775a4ccf87bf30a73df8954fe9446d6e2a.tar.gz chromium_src-8a45c9775a4ccf87bf30a73df8954fe9446d6e2a.tar.bz2 |
MonitorManager to manage multiple monitors.
This is clone of issue 9689027, which I can't access due to some internal error.
BUG=115510
TEST=none
Review URL: https://chromiumcodereview.appspot.com/9699013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@126685 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/screen_ash.h')
-rw-r--r-- | ash/screen_ash.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/ash/screen_ash.h b/ash/screen_ash.h index deaa76f..20340a7 100644 --- a/ash/screen_ash.h +++ b/ash/screen_ash.h @@ -24,11 +24,6 @@ class ASH_EXPORT ScreenAsh : public gfx::Screen { explicit ScreenAsh(aura::RootWindow* root_window); virtual ~ScreenAsh(); - void set_work_area_insets(const gfx::Insets& insets) { - work_area_insets_ = insets; - } - const gfx::Insets& work_area_insets() const { return work_area_insets_; } - protected: virtual gfx::Point GetCursorScreenPointImpl() OVERRIDE; virtual gfx::Rect GetMonitorWorkAreaNearestWindowImpl( @@ -44,14 +39,6 @@ class ASH_EXPORT ScreenAsh : public gfx::Screen { virtual int GetNumMonitorsImpl() OVERRIDE; private: - // We currently support only one monitor. These two methods return the bounds - // and work area. - gfx::Rect GetBounds(); - gfx::Rect GetWorkAreaBounds(); - - // Insets for the work area. - gfx::Insets work_area_insets_; - aura::RootWindow* root_window_; DISALLOW_COPY_AND_ASSIGN(ScreenAsh); |