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

Unified Diff: ui/gfx/ozone/dri/dri_surface.cc

Issue 134053002: [Ozone] Update setPixelRef call due to interface changes in SkBitmapDevice (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 months 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/ozone/dri/dri_surface.cc
diff --git a/ui/gfx/ozone/dri/dri_surface.cc b/ui/gfx/ozone/dri/dri_surface.cc
index c9b6af4b562c53dfd4790926064b762d861459ac..d4200999d84022cf79a10d91c0ed89e5cde6b7bb 100644
--- a/ui/gfx/ozone/dri/dri_surface.cc
+++ b/ui/gfx/ozone/dri/dri_surface.cc
@@ -29,7 +29,7 @@ class CustomSkBitmapDevice : public SkBitmapDevice {
CustomSkBitmapDevice(const SkBitmap& bitmap) : SkBitmapDevice(bitmap) {}
virtual ~CustomSkBitmapDevice() {}
- void SetPixelRef(SkPixelRef* pixel_ref) { setPixelRef(pixel_ref, 0); }
+ void SetPixelRef(SkPixelRef* pixel_ref) { setPixelRef(pixel_ref); }
private:
DISALLOW_COPY_AND_ASSIGN(CustomSkBitmapDevice);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698