Index: ui/aura/cursor_delegate.h |
diff --git a/ui/aura/cursor_delegate.h b/ui/aura/cursor_delegate.h |
deleted file mode 100644 |
index 8ae8d7089bc868616fcac4820a9b5ef0a28e92af..0000000000000000000000000000000000000000 |
--- a/ui/aura/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 UI_AURA_CURSOR_DELEGATE_H_ |
-#define UI_AURA_CURSOR_DELEGATE_H_ |
- |
-#include "ui/aura/aura_export.h" |
-#include "ui/gfx/native_widget_types.h" |
- |
-namespace aura { |
- |
-// This interface is implmented by a platform specific object that changes |
-// the cursor's image and visibility. |
-class AURA_EXPORT CursorDelegate { |
- public: |
- virtual void SetCursor(gfx::NativeCursor cursor) = 0; |
- virtual void ShowCursor(bool visible) = 0; |
- |
- protected: |
- virtual ~CursorDelegate() {}; |
-}; |
- |
-} // namespace aura |
- |
-#endif // UI_AURA_CURSOR_DELEGATE_H_ |