summaryrefslogtreecommitdiffstats
path: root/ui/aura/env.h
diff options
context:
space:
mode:
authorerg@chromium.org <erg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-26 00:54:19 +0000
committererg@chromium.org <erg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-26 00:54:19 +0000
commit4b8003cd9f0cdc48c681a5c69c51610771d25f32 (patch)
tree1322bf592dcf003d7c918401b6a0637fc75c4c19 /ui/aura/env.h
parent9746f9132e55a91d2ec3d866711277b874574743 (diff)
downloadchromium_src-4b8003cd9f0cdc48c681a5c69c51610771d25f32.zip
chromium_src-4b8003cd9f0cdc48c681a5c69c51610771d25f32.tar.gz
chromium_src-4b8003cd9f0cdc48c681a5c69c51610771d25f32.tar.bz2
Aura desktop: Show resize cursors again.
This moves CursorManager into ash/wm/ and makes it an implementation of a new CursorClient interface. It's really an implementation detail of ash. Then create a desktop version of this interface. BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/10692170 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148454 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/aura/env.h')
-rw-r--r--ui/aura/env.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/ui/aura/env.h b/ui/aura/env.h
index a6f49ba..e5a1952 100644
--- a/ui/aura/env.h
+++ b/ui/aura/env.h
@@ -9,12 +9,10 @@
#include "base/message_loop.h"
#include "base/observer_list.h"
#include "ui/aura/aura_export.h"
-#include "ui/aura/cursor_manager.h"
#include "ui/aura/client/stacking_client.h"
#include "ui/gfx/point.h"
namespace aura {
-class CursorManager;
class EnvObserver;
class EventFilter;
class DisplayManager;
@@ -78,8 +76,6 @@ class AURA_EXPORT Env {
EventFilter* event_filter() { return event_filter_.get(); }
void SetEventFilter(EventFilter* event_filter);
- CursorManager* cursor_manager() { return &cursor_manager_; }
-
// Returns the native event dispatcher. The result should only be passed to
// base::RunLoop(dispatcher), or used to dispatch an event by
// |Dispatch(const NativeEvent&)| on it. It must never be stored.
@@ -109,7 +105,6 @@ class AURA_EXPORT Env {
client::StackingClient* stacking_client_;
scoped_ptr<DisplayManager> display_manager_;
scoped_ptr<EventFilter> event_filter_;
- CursorManager cursor_manager_;
#if defined(USE_X11)
scoped_ptr<internal::DisplayChangeObserverX11> display_change_observer_;