| Index: content/renderer/cursor_utils.cc
|
| diff --git a/content/renderer/cursor_utils.cc b/content/renderer/cursor_utils.cc
|
| index df8e3ff7dd255bb3f06322d218a7259972623140..fe40ae3ef5788d32f4d22d1935104e4ba11f4464 100644
|
| --- a/content/renderer/cursor_utils.cc
|
| +++ b/content/renderer/cursor_utils.cc
|
| @@ -14,7 +14,7 @@ namespace content {
|
|
|
| bool GetWebCursorInfo(const WebCursor& cursor,
|
| WebCursorInfo* web_cursor_info) {
|
| - WebCursor::CursorInfo cursor_info;
|
| + CursorInfo cursor_info;
|
| cursor.GetCursorInfo(&cursor_info);
|
|
|
| web_cursor_info->type = cursor_info.type;
|
| @@ -26,7 +26,7 @@ bool GetWebCursorInfo(const WebCursor& cursor,
|
|
|
| void InitializeCursorFromWebCursorInfo(WebCursor* cursor,
|
| const WebCursorInfo& web_cursor_info) {
|
| - WebCursor::CursorInfo cursor_info;
|
| + CursorInfo cursor_info;
|
| cursor_info.type = web_cursor_info.type;
|
| cursor_info.image_scale_factor = web_cursor_info.image_scale_factor;
|
| cursor_info.hotspot = web_cursor_info.hot_spot;
|
|
|