From 7aba66652cf8fe7e131d4638d00b574fc05526ee Mon Sep 17 00:00:00 2001 From: "danakj@chromium.org" Date: Tue, 12 Mar 2013 10:17:34 +0000 Subject: cc: Chromify Layer and LayerImpl classes. Style-only change. Bring the Layer and LayerImpl classes into the Chromium style. R=enne,piman,jamesr TBR=joth Review URL: https://chromiumcodereview.appspot.com/12774006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@187555 0039d316-1c4b-4281-b951-d872f2087c98 --- webkit/plugins/npapi/webplugin_impl.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'webkit/plugins/npapi/webplugin_impl.cc') 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 -- cgit v1.1