| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "cc/blink/web_image_layer_impl.h" | 5 #include "cc/blink/web_image_layer_impl.h" |
| 6 | 6 |
| 7 #include "cc/blink/web_layer_impl.h" | 7 #include "cc/blink/web_layer_impl.h" |
| 8 #include "cc/blink/web_layer_impl_fixed_bounds.h" | 8 #include "cc/blink/web_layer_impl_fixed_bounds.h" |
| 9 #include "cc/layers/image_layer.h" | 9 #include "cc/layers/image_layer.h" |
| 10 #include "cc/layers/picture_image_layer.h" | 10 #include "cc/layers/picture_image_layer.h" |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 void WebImageLayerImpl::setImageBitmap(const SkBitmap& bitmap) { | 28 void WebImageLayerImpl::setImageBitmap(const SkBitmap& bitmap) { |
| 29 if (WebLayerImpl::UsingPictureLayer()) { | 29 if (WebLayerImpl::UsingPictureLayer()) { |
| 30 static_cast<cc::PictureImageLayer*>(layer_->layer())->SetBitmap(bitmap); | 30 static_cast<cc::PictureImageLayer*>(layer_->layer())->SetBitmap(bitmap); |
| 31 static_cast<WebLayerImplFixedBounds*>(layer_.get()) | 31 static_cast<WebLayerImplFixedBounds*>(layer_.get()) |
| 32 ->SetFixedBounds(gfx::Size(bitmap.width(), bitmap.height())); | 32 ->SetFixedBounds(gfx::Size(bitmap.width(), bitmap.height())); |
| 33 } else { | 33 } else { |
| 34 static_cast<cc::ImageLayer*>(layer_->layer())->SetBitmap(bitmap); | 34 static_cast<cc::ImageLayer*>(layer_->layer())->SetBitmap(bitmap); |
| 35 } | 35 } |
| 36 } | 36 } |
| 37 | 37 |
| 38 void WebImageLayerImpl::setNearestNeighbor(bool nearest_neighbor) { |
| 39 if (WebLayerImpl::UsingPictureLayer()) { |
| 40 static_cast<cc::PictureImageLayer*>(layer_->layer()) |
| 41 ->SetNearestNeighbor(nearest_neighbor); |
| 42 } |
| 43 } |
| 44 |
| 38 } // namespace cc_blink | 45 } // namespace cc_blink |
| OLD | NEW |