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

Unified Diff: ui/surface/transport_dib_win.cc

Issue 2476113002: Change call-sites now that SkCanvas is not ref-counted (Closed)
Patch Set: no need for unique check on unique_ptr Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: ui/surface/transport_dib_win.cc
diff --git a/ui/surface/transport_dib_win.cc b/ui/surface/transport_dib_win.cc
index 190065b9ded3acff714154ce7456a7362b218fb6..83807e0d115abe822853013e8e4747e413475538 100644
--- a/ui/surface/transport_dib_win.cc
+++ b/ui/surface/transport_dib_win.cc
@@ -68,8 +68,9 @@ SkCanvas* TransportDIB::GetPlatformCanvas(int w, int h,
// Windows will fail to map the section if the dimensions of the canvas
// are too large.
SkCanvas* canvas = skia::CreatePlatformCanvas(
- w, h, opaque, shared_memory_.handle().GetHandle(),
- skia::RETURN_NULL_ON_FAILURE);
+ w, h, opaque, shared_memory_.handle().GetHandle(),
+ skia::RETURN_NULL_ON_FAILURE)
+ .release();
// Calculate the size for the memory region backing the canvas.
if (canvas)

Powered by Google App Engine
This is Rietveld 408576698