diff options
Diffstat (limited to 'webkit/plugins/npapi/webplugin_impl.cc')
-rw-r--r-- | webkit/plugins/npapi/webplugin_impl.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/plugins/npapi/webplugin_impl.cc b/webkit/plugins/npapi/webplugin_impl.cc index 357bb01..4982c95 100644 --- a/webkit/plugins/npapi/webplugin_impl.cc +++ b/webkit/plugins/npapi/webplugin_impl.cc @@ -782,7 +782,7 @@ void WebPluginImpl::AcceleratedPluginSwappedIOSurface() { if (next_io_surface_allocated_) { if (next_io_surface_id_) { if (!io_surface_layer_.get()) { - io_surface_layer_ = cc::IOSurfaceLayer::create(); + io_surface_layer_ = cc::IOSurfaceLayer::Create(); web_layer_.reset(new WebKit::WebLayerImpl(io_surface_layer_)); container_->setWebLayer(web_layer_.get()); } @@ -797,7 +797,7 @@ void WebPluginImpl::AcceleratedPluginSwappedIOSurface() { next_io_surface_allocated_ = false; } else { if (io_surface_layer_) - io_surface_layer_->setNeedsDisplay(); + io_surface_layer_->SetNeedsDisplay(); } } #endif |