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

Side by Side Diff: cc/layers/picture_image_layer.cc

Issue 609663003: cc: Remove use of PassAs() and constructor-casting with scoped_ptr. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cc-passas: PassAs-presubmit-warning Created 6 years, 2 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 unified diff | Download patch
« no previous file with comments | « cc/layers/painted_scrollbar_layer_impl.cc ('k') | cc/layers/picture_image_layer_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2010 The Chromium Authors. All rights reserved. 1 // Copyright 2010 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/layers/picture_image_layer.h" 5 #include "cc/layers/picture_image_layer.h"
6 6
7 #include "cc/layers/picture_image_layer_impl.h" 7 #include "cc/layers/picture_image_layer_impl.h"
8 #include "third_party/skia/include/core/SkCanvas.h" 8 #include "third_party/skia/include/core/SkCanvas.h"
9 9
10 namespace cc { 10 namespace cc {
11 11
12 scoped_refptr<PictureImageLayer> PictureImageLayer::Create() { 12 scoped_refptr<PictureImageLayer> PictureImageLayer::Create() {
13 return make_scoped_refptr(new PictureImageLayer()); 13 return make_scoped_refptr(new PictureImageLayer());
14 } 14 }
15 15
16 PictureImageLayer::PictureImageLayer() : PictureLayer(this) {} 16 PictureImageLayer::PictureImageLayer() : PictureLayer(this) {}
17 17
18 PictureImageLayer::~PictureImageLayer() { 18 PictureImageLayer::~PictureImageLayer() {
19 ClearClient(); 19 ClearClient();
20 } 20 }
21 21
22 scoped_ptr<LayerImpl> PictureImageLayer::CreateLayerImpl( 22 scoped_ptr<LayerImpl> PictureImageLayer::CreateLayerImpl(
23 LayerTreeImpl* tree_impl) { 23 LayerTreeImpl* tree_impl) {
24 return PictureImageLayerImpl::Create(tree_impl, id()).PassAs<LayerImpl>(); 24 return PictureImageLayerImpl::Create(tree_impl, id());
25 } 25 }
26 26
27 bool PictureImageLayer::HasDrawableContent() const { 27 bool PictureImageLayer::HasDrawableContent() const {
28 return !bitmap_.isNull() && PictureLayer::HasDrawableContent(); 28 return !bitmap_.isNull() && PictureLayer::HasDrawableContent();
29 } 29 }
30 30
31 void PictureImageLayer::SetBitmap(const SkBitmap& bitmap) { 31 void PictureImageLayer::SetBitmap(const SkBitmap& bitmap) {
32 // SetBitmap() currently gets called whenever there is any 32 // SetBitmap() currently gets called whenever there is any
33 // style change that affects the layer even if that change doesn't 33 // style change that affects the layer even if that change doesn't
34 // affect the actual contents of the image (e.g. a CSS animation). 34 // affect the actual contents of the image (e.g. a CSS animation).
(...skipping 23 matching lines...) Expand all
58 // to the root canvas, this draw must use the kSrcOver_Mode so that 58 // to the root canvas, this draw must use the kSrcOver_Mode so that
59 // transparent images blend correctly. 59 // transparent images blend correctly.
60 canvas->drawBitmap(bitmap_, 0, 0); 60 canvas->drawBitmap(bitmap_, 0, 0);
61 } 61 }
62 62
63 bool PictureImageLayer::FillsBoundsCompletely() const { 63 bool PictureImageLayer::FillsBoundsCompletely() const {
64 return false; 64 return false;
65 } 65 }
66 66
67 } // namespace cc 67 } // namespace cc
OLDNEW
« no previous file with comments | « cc/layers/painted_scrollbar_layer_impl.cc ('k') | cc/layers/picture_image_layer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698