diff options
author | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-17 18:24:33 +0000 |
---|---|---|
committer | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-17 18:24:33 +0000 |
commit | 55ad8c14c31df30801d8422e81b78322f95c0526 (patch) | |
tree | c0fe47685194fd2137c658944589c439d93b0c8b /ash/display/display_controller.h | |
parent | f3eccd0dfd02eb6b32c1a233e28439fc1a241d65 (diff) | |
download | chromium_src-55ad8c14c31df30801d8422e81b78322f95c0526.zip chromium_src-55ad8c14c31df30801d8422e81b78322f95c0526.tar.gz chromium_src-55ad8c14c31df30801d8422e81b78322f95c0526.tar.bz2 |
Screen cleanup:
* Split ScreenAsh to ScreenUtil (set of utility functions) and the screen implementation.
* moved screen_ash from Shell to DisplayManager. Ash specific imp is now hidden in DisplayManager.
* Shell now creates a separate screen object which simply keeps the list of displays for shutdown. This allow all screen operation valid during shutdown.
BUG=None
TBR=hongbo.min@intel.com,sky@chromium.org
Review URL: https://codereview.chromium.org/138003007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245562 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/display/display_controller.h')
-rw-r--r-- | ash/display/display_controller.h | 23 |
1 files changed, 3 insertions, 20 deletions
diff --git a/ash/display/display_controller.h b/ash/display/display_controller.h index dcc78ed..839e70b 100644 --- a/ash/display/display_controller.h +++ b/ash/display/display_controller.h @@ -72,13 +72,9 @@ class ASH_EXPORT DisplayController : public gfx::DisplayObserver, void Start(); void Shutdown(); - // Returns primary display. This is safe to use after ash::Shell is - // deleted. - static const gfx::Display& GetPrimaryDisplay(); - - // Returns the number of display. This is safe to use after - // ash::Shell is deleted. - static int GetNumDisplays(); + // Returns primary display's ID. + // TODO(oshima): Move this out from DisplayController; + static int64 GetPrimaryDisplayId(); internal::MirrorWindowController* mirror_window_controller() { return mirror_window_controller_.get(); @@ -142,19 +138,6 @@ class ASH_EXPORT DisplayController : public gfx::DisplayObserver, // Sets the work area's |insets| to the display assigned to |window|. bool UpdateWorkAreaOfDisplayNearestWindow(const aura::Window* window, const gfx::Insets& insets); - - // Returns the display object nearest given |point|. - const gfx::Display& GetDisplayNearestPoint( - const gfx::Point& point) const; - - // Returns the display object nearest given |window|. - const gfx::Display& GetDisplayNearestWindow( - const aura::Window* window) const; - - // Returns the display that most closely intersects |match_rect|. - const gfx::Display& GetDisplayMatching( - const gfx::Rect& match_rect)const; - // aura::DisplayObserver overrides: virtual void OnDisplayBoundsChanged( const gfx::Display& display) OVERRIDE; |