Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(268)

Side by Side Diff: webkit/glue/webcursor.h

Issue 6312156: Change includes of gfx/* to ui/gfx/* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « webkit/glue/web_io_operators.cc ('k') | webkit/glue/webcursor_gtk.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef WEBKIT_GLUE_WEBCURSOR_H_ 5 #ifndef WEBKIT_GLUE_WEBCURSOR_H_
6 #define WEBKIT_GLUE_WEBCURSOR_H_ 6 #define WEBKIT_GLUE_WEBCURSOR_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "gfx/native_widget_types.h" 9 #include "ui/gfx/native_widget_types.h"
10 #include "gfx/point.h" 10 #include "ui/gfx/point.h"
11 #include "gfx/size.h" 11 #include "ui/gfx/size.h"
12 12
13 #include <vector> 13 #include <vector>
14 14
15 #if defined(OS_WIN) 15 #if defined(OS_WIN)
16 typedef struct HINSTANCE__* HINSTANCE; 16 typedef struct HINSTANCE__* HINSTANCE;
17 typedef struct HICON__* HICON; 17 typedef struct HICON__* HICON;
18 typedef HICON HCURSOR; 18 typedef HICON HCURSOR;
19 #elif defined(USE_X11) 19 #elif defined(USE_X11)
20 typedef struct _GdkCursor GdkCursor; 20 typedef struct _GdkCursor GdkCursor;
21 #elif defined(OS_MACOSX) 21 #elif defined(OS_MACOSX)
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 HCURSOR custom_cursor_; 152 HCURSOR custom_cursor_;
153 #endif // OS_WIN 153 #endif // OS_WIN
154 154
155 #if defined(USE_X11) 155 #if defined(USE_X11)
156 // A custom cursor created that should be unref'ed from the destructor. 156 // A custom cursor created that should be unref'ed from the destructor.
157 GdkCursor* unref_; 157 GdkCursor* unref_;
158 #endif 158 #endif
159 }; 159 };
160 160
161 #endif // WEBKIT_GLUE_WEBCURSOR_H_ 161 #endif // WEBKIT_GLUE_WEBCURSOR_H_
OLDNEW
« no previous file with comments | « webkit/glue/web_io_operators.cc ('k') | webkit/glue/webcursor_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698