Quick fix for the memory leak + docs
This commit is contained in:
parent
066c189249
commit
745253a369
4 changed files with 9 additions and 9 deletions
|
@ -1043,13 +1043,13 @@ void WebContents::EndFrameSubscription() {
|
|||
}
|
||||
|
||||
void WebContents::OnCursorChange(const content::WebCursor& cursor) {
|
||||
content::WebCursor::CursorInfo* info = new content::WebCursor::CursorInfo();
|
||||
cursor.GetCursorInfo(info);
|
||||
content::WebCursor::CursorInfo info;
|
||||
cursor.GetCursorInfo(&info);
|
||||
|
||||
if (cursor.IsCustom()) {
|
||||
Emit("cursor-changed", CursorTypeToString(info),
|
||||
gfx::Image::CreateFrom1xBitmap(info->custom_image),
|
||||
info->image_scale_factor);
|
||||
gfx::Image::CreateFrom1xBitmap(info.custom_image),
|
||||
info.image_scale_factor);
|
||||
} else {
|
||||
Emit("cursor-changed", CursorTypeToString(info));
|
||||
}
|
||||
|
|
|
@ -9,8 +9,8 @@ using Cursor = blink::WebCursorInfo::Type;
|
|||
|
||||
namespace atom {
|
||||
|
||||
std::string CursorTypeToString(const content::WebCursor::CursorInfo* info) {
|
||||
switch (info->type) {
|
||||
std::string CursorTypeToString(const content::WebCursor::CursorInfo& info) {
|
||||
switch (info.type) {
|
||||
case Cursor::TypePointer: return "default";
|
||||
case Cursor::TypeCross: return "crosshair";
|
||||
case Cursor::TypeHand: return "pointer";
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
namespace atom {
|
||||
|
||||
// Returns the cursor's type as a string.
|
||||
std::string CursorTypeToString(const content::WebCursor::CursorInfo* info);
|
||||
std::string CursorTypeToString(const content::WebCursor::CursorInfo& info);
|
||||
|
||||
} // namespace atom
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue