| Index: ui/views/native_cursor.h
|
| diff --git a/ui/views/native_cursor.h b/ui/views/native_cursor.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..81f6e213ae20f51ef00138f63121ec3b53a2b81f
|
| --- /dev/null
|
| +++ b/ui/views/native_cursor.h
|
| @@ -0,0 +1,21 @@
|
| +// Copyright 2014 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_VIEWS_NATIVE_CURSOR_H_
|
| +#define UI_VIEWS_NATIVE_CURSOR_H_
|
| +
|
| +#include "ui/gfx/native_widget_types.h"
|
| +#include "ui/views/views_export.h"
|
| +
|
| +namespace views {
|
| +
|
| +VIEWS_EXPORT gfx::NativeCursor GetNativeIBeamCursor();
|
| +VIEWS_EXPORT gfx::NativeCursor GetNativeHandCursor();
|
| +VIEWS_EXPORT gfx::NativeCursor GetNativeColumnResizeCursor();
|
| +VIEWS_EXPORT gfx::NativeCursor GetNativeEastWestResizeCursor();
|
| +VIEWS_EXPORT gfx::NativeCursor GetNativeNorthSouthResizeCursor();
|
| +
|
| +} // namespace views
|
| +
|
| +#endif // UI_VIEWS_NATIVE_CURSOR_H_
|
|
|