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

Unified Diff: remoting/client/plugin/pepper_view.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 | « remoting/client/plugin/chromoting_instance.cc ('k') | webkit/plugins/ppapi/ppb_audio_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/plugin/pepper_view.cc
===================================================================
--- remoting/client/plugin/pepper_view.cc (revision 70488)
+++ remoting/client/plugin/pepper_view.cc (working copy)
@@ -48,7 +48,7 @@
// is wrong.
if (is_static_fill_) {
LOG(ERROR) << "Static filling " << static_fill_color_;
- pp::ImageData image(pp::ImageData::GetNativeImageDataFormat(),
+ pp::ImageData image(instance_, pp::ImageData::GetNativeImageDataFormat(),
pp::Size(viewport_width_, viewport_height_),
false);
if (image.is_null()) {
@@ -82,7 +82,7 @@
TraceContext::tracer()->PrintString("Start Paint Frame.");
// TODO(ajwong): We're assuming the native format is BGRA_PREMUL below. This
// is wrong.
- pp::ImageData image(pp::ImageData::GetNativeImageDataFormat(),
+ pp::ImageData image(instance_, pp::ImageData::GetNativeImageDataFormat(),
pp::Size(viewport_width_, viewport_height_),
false);
if (image.is_null()) {
@@ -181,7 +181,8 @@
viewport_width_ = width;
viewport_height_ = height;
- graphics2d_ = pp::Graphics2D(pp::Size(viewport_width_, viewport_height_),
+ graphics2d_ = pp::Graphics2D(instance_,
+ pp::Size(viewport_width_, viewport_height_),
false);
if (!instance_->BindGraphics(graphics2d_)) {
LOG(ERROR) << "Couldn't bind the device context.";
« no previous file with comments | « remoting/client/plugin/chromoting_instance.cc ('k') | webkit/plugins/ppapi/ppb_audio_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698