summaryrefslogtreecommitdiffstats
path: root/ash/wm/cursor_delegate.h
diff options
context:
space:
mode:
Diffstat (limited to 'ash/wm/cursor_delegate.h')
-rw-r--r--ash/wm/cursor_delegate.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/ash/wm/cursor_delegate.h b/ash/wm/cursor_delegate.h
deleted file mode 100644
index 05d901f..0000000
--- a/ash/wm/cursor_delegate.h
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef ASH_WM_CURSOR_DELEGATE_H_
-#define ASH_WM_CURSOR_DELEGATE_H_
-
-#include "ash/ash_export.h"
-#include "ui/gfx/native_widget_types.h"
-
-namespace ash {
-
-// This interface is implmented by a platform specific object that changes
-// the cursor's image and visibility.
-class ASH_EXPORT CursorDelegate {
- public:
- virtual void SetCursor(gfx::NativeCursor cursor) = 0;
- virtual void ShowCursor(bool visible) = 0;
-
- protected:
- virtual ~CursorDelegate() {};
-};
-
-} // namespace aura
-
-#endif // ASH_WM_CURSOR_DELEGATE_H_