Index: webkit/common/cursors/webcursor.h |
diff --git a/webkit/common/cursors/webcursor.h b/webkit/common/cursors/webcursor.h |
index c64689e63072b4f83637ab4953f4729e0e12e05a..363e7b9eb273f15934253d4c4df9c63baaf5296c 100644 |
--- a/webkit/common/cursors/webcursor.h |
+++ b/webkit/common/cursors/webcursor.h |
@@ -43,7 +43,7 @@ class PickleIterator; |
class WEBKIT_COMMON_EXPORT WebCursor { |
public: |
struct CursorInfo { |
- explicit CursorInfo(WebKit::WebCursorInfo::Type cursor_type) |
+ explicit CursorInfo(blink::WebCursorInfo::Type cursor_type) |
: type(cursor_type), |
image_scale_factor(1) { |
#if defined(OS_WIN) |
@@ -52,14 +52,14 @@ class WEBKIT_COMMON_EXPORT WebCursor { |
} |
CursorInfo() |
- : type(WebKit::WebCursorInfo::TypePointer), |
+ : type(blink::WebCursorInfo::TypePointer), |
image_scale_factor(1) { |
#if defined(OS_WIN) |
external_handle = NULL; |
#endif |
} |
- WebKit::WebCursorInfo::Type type; |
+ blink::WebCursorInfo::Type type; |
gfx::Point hotspot; |
float image_scale_factor; |
SkBitmap custom_image; |