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

Unified Diff: ppapi/cpp/paint_manager.cc

Issue 6085009: Add an instance parameter to var objects, audio, and the 2D API. This replace... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 12 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 | « ppapi/cpp/image_data.cc ('k') | ppapi/cpp/var.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/paint_manager.cc
===================================================================
--- ppapi/cpp/paint_manager.cc (revision 70488)
+++ ppapi/cpp/paint_manager.cc (working copy)
@@ -56,7 +56,7 @@
if (new_size == graphics_.size())
return;
- graphics_ = Graphics2D(new_size, is_always_opaque_);
+ graphics_ = Graphics2D(instance_, new_size, is_always_opaque_);
if (graphics_.is_null())
return;
instance_->BindGraphics(graphics_);
« no previous file with comments | « ppapi/cpp/image_data.cc ('k') | ppapi/cpp/var.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698