diff options
author | enne@chromium.org <enne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-14 16:20:32 +0000 |
---|---|---|
committer | enne@chromium.org <enne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-14 16:20:32 +0000 |
commit | 8c406cda313dc0bd1a92d0e2fb8dfd068338c8b6 (patch) | |
tree | 92f449e82578d4fe42e106dd6b3b30815d39b516 /webkit/compositor_bindings | |
parent | 86896381fe3b52d9b71080c3fe63da536b6f098e (diff) | |
download | chromium_src-8c406cda313dc0bd1a92d0e2fb8dfd068338c8b6.zip chromium_src-8c406cda313dc0bd1a92d0e2fb8dfd068338c8b6.tar.gz chromium_src-8c406cda313dc0bd1a92d0e2fb8dfd068338c8b6.tar.bz2 |
cc: Fix style errors in impl-side painting classes
R=jamesr@chromium.org
BUG=none
Review URL: https://chromiumcodereview.appspot.com/12819002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@188094 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/compositor_bindings')
-rw-r--r-- | webkit/compositor_bindings/web_content_layer_impl.cc | 2 | ||||
-rw-r--r-- | webkit/compositor_bindings/web_image_layer_impl.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/webkit/compositor_bindings/web_content_layer_impl.cc b/webkit/compositor_bindings/web_content_layer_impl.cc index 70c6645..2a65324a7 100644 --- a/webkit/compositor_bindings/web_content_layer_impl.cc +++ b/webkit/compositor_bindings/web_content_layer_impl.cc @@ -34,7 +34,7 @@ WebContentLayerImpl::WebContentLayerImpl(WebContentLayerClient* client) WebContentLayerImpl::~WebContentLayerImpl() { if (usingPictureLayer()) - static_cast<PictureLayer*>(layer_->layer())->clearClient(); + static_cast<PictureLayer*>(layer_->layer())->ClearClient(); else static_cast<ContentLayer*>(layer_->layer())->clearClient(); } diff --git a/webkit/compositor_bindings/web_image_layer_impl.cc b/webkit/compositor_bindings/web_image_layer_impl.cc index 4c94662..40c2213 100644 --- a/webkit/compositor_bindings/web_image_layer_impl.cc +++ b/webkit/compositor_bindings/web_image_layer_impl.cc @@ -30,7 +30,7 @@ WebLayer* WebImageLayerImpl::layer() { return layer_.get(); } void WebImageLayerImpl::setBitmap(SkBitmap bitmap) { if (usingPictureLayer()) { - static_cast<cc::PictureImageLayer*>(layer_->layer())->setBitmap(bitmap); + static_cast<cc::PictureImageLayer*>(layer_->layer())->SetBitmap(bitmap); static_cast<WebLayerImplFixedBounds*>(layer_.get())->SetFixedBounds(gfx::Size(bitmap.width(), bitmap.height())); } else static_cast<cc::ImageLayer*>(layer_->layer())->SetBitmap(bitmap); |