diff options
author | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-16 23:08:19 +0000 |
---|---|---|
committer | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-16 23:08:19 +0000 |
commit | 84f43c97a96a1f4c61b699f26647b9d260bd9a7d (patch) | |
tree | a09a4533a4190daf6f6960861531067ebc62d248 /webkit/common | |
parent | 90bb64081f7e1a35136ca9511bd5e9cddd47db68 (diff) | |
download | chromium_src-84f43c97a96a1f4c61b699f26647b9d260bd9a7d.zip chromium_src-84f43c97a96a1f4c61b699f26647b9d260bd9a7d.tar.gz chromium_src-84f43c97a96a1f4c61b699f26647b9d260bd9a7d.tar.bz2 |
Makes native_widget_types forward declare ui::Cursor.
BUG=none
TEST=none
R=ben@chromium.org, jamesr@chromium.org
TBR=jamesr@chromium.org
Review URL: https://chromiumcodereview.appspot.com/23533057
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@223459 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/common')
-rw-r--r-- | webkit/common/cursors/webcursor.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/webkit/common/cursors/webcursor.h b/webkit/common/cursors/webcursor.h index 24e8068..c64689e 100644 --- a/webkit/common/cursors/webcursor.h +++ b/webkit/common/cursors/webcursor.h @@ -15,6 +15,10 @@ #include <vector> +#if defined(USE_AURA) +#include "ui/base/cursor/cursor.h" +#endif + #if defined(OS_WIN) typedef struct HINSTANCE__* HINSTANCE; typedef struct HICON__* HICON; |