summaryrefslogtreecommitdiffstats
path: root/content/renderer/cursor_utils.cc
blob: 371aaad1fbf3d47fb4f2e0e9901a3dd3ef962332 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Copyright 2013 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.

#include "content/renderer/cursor_utils.h"

#include "build/build_config.h"
#include "content/common/cursors/webcursor.h"
#include "third_party/WebKit/public/platform/WebCursorInfo.h"

using blink::WebCursorInfo;

namespace content {

bool GetWebCursorInfo(const WebCursor& cursor,
                      WebCursorInfo* web_cursor_info) {
  WebCursor::CursorInfo cursor_info;
  cursor.GetCursorInfo(&cursor_info);

  web_cursor_info->type = cursor_info.type;
  web_cursor_info->hotSpot = cursor_info.hotspot;
  web_cursor_info->customImage = cursor_info.custom_image;
  web_cursor_info->imageScaleFactor = cursor_info.image_scale_factor;
#if defined(OS_WIN)
  web_cursor_info->externalHandle = cursor_info.external_handle;
#endif
  return true;
}

void InitializeCursorFromWebCursorInfo(WebCursor* cursor,
                                       const WebCursorInfo& web_cursor_info) {
  WebCursor::CursorInfo cursor_info;
  cursor_info.type = web_cursor_info.type;
  cursor_info.image_scale_factor = web_cursor_info.imageScaleFactor;
  cursor_info.hotspot = web_cursor_info.hotSpot;
  cursor_info.custom_image = web_cursor_info.customImage.getSkBitmap();
#if defined(OS_WIN)
  cursor_info.external_handle = web_cursor_info.externalHandle;
#endif
  cursor->InitFromCursorInfo(cursor_info);
}

}  // namespce content