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

Side by Side Diff: cc/layers/io_surface_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/heads_up_display_layer_impl_unittest.cc ('k') | cc/layers/io_surface_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 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 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/io_surface_layer.h" 5 #include "cc/layers/io_surface_layer.h"
6 6
7 #include "cc/layers/io_surface_layer_impl.h" 7 #include "cc/layers/io_surface_layer_impl.h"
8 8
9 namespace cc { 9 namespace cc {
10 10
11 scoped_refptr<IOSurfaceLayer> IOSurfaceLayer::Create() { 11 scoped_refptr<IOSurfaceLayer> IOSurfaceLayer::Create() {
12 return make_scoped_refptr(new IOSurfaceLayer()); 12 return make_scoped_refptr(new IOSurfaceLayer());
13 } 13 }
14 14
15 IOSurfaceLayer::IOSurfaceLayer() : Layer(), io_surface_id_(0) {} 15 IOSurfaceLayer::IOSurfaceLayer() : Layer(), io_surface_id_(0) {}
16 16
17 IOSurfaceLayer::~IOSurfaceLayer() {} 17 IOSurfaceLayer::~IOSurfaceLayer() {}
18 18
19 void IOSurfaceLayer::SetIOSurfaceProperties(uint32_t io_surface_id, 19 void IOSurfaceLayer::SetIOSurfaceProperties(uint32_t io_surface_id,
20 const gfx::Size& size) { 20 const gfx::Size& size) {
21 io_surface_id_ = io_surface_id; 21 io_surface_id_ = io_surface_id;
22 io_surface_size_ = size; 22 io_surface_size_ = size;
23 UpdateDrawsContent(HasDrawableContent()); 23 UpdateDrawsContent(HasDrawableContent());
24 SetNeedsCommit(); 24 SetNeedsCommit();
25 } 25 }
26 26
27 scoped_ptr<LayerImpl> IOSurfaceLayer::CreateLayerImpl( 27 scoped_ptr<LayerImpl> IOSurfaceLayer::CreateLayerImpl(
28 LayerTreeImpl* tree_impl) { 28 LayerTreeImpl* tree_impl) {
29 return IOSurfaceLayerImpl::Create(tree_impl, layer_id_).PassAs<LayerImpl>(); 29 return IOSurfaceLayerImpl::Create(tree_impl, layer_id_);
30 } 30 }
31 31
32 bool IOSurfaceLayer::HasDrawableContent() const { 32 bool IOSurfaceLayer::HasDrawableContent() const {
33 return io_surface_id_ && Layer::HasDrawableContent(); 33 return io_surface_id_ && Layer::HasDrawableContent();
34 } 34 }
35 35
36 void IOSurfaceLayer::PushPropertiesTo(LayerImpl* layer) { 36 void IOSurfaceLayer::PushPropertiesTo(LayerImpl* layer) {
37 Layer::PushPropertiesTo(layer); 37 Layer::PushPropertiesTo(layer);
38 38
39 IOSurfaceLayerImpl* io_surface_layer = 39 IOSurfaceLayerImpl* io_surface_layer =
40 static_cast<IOSurfaceLayerImpl*>(layer); 40 static_cast<IOSurfaceLayerImpl*>(layer);
41 io_surface_layer->SetIOSurfaceProperties(io_surface_id_, io_surface_size_); 41 io_surface_layer->SetIOSurfaceProperties(io_surface_id_, io_surface_size_);
42 } 42 }
43 43
44 bool IOSurfaceLayer::Update(ResourceUpdateQueue* queue, 44 bool IOSurfaceLayer::Update(ResourceUpdateQueue* queue,
45 const OcclusionTracker<Layer>* occlusion) { 45 const OcclusionTracker<Layer>* occlusion) {
46 bool updated = Layer::Update(queue, occlusion); 46 bool updated = Layer::Update(queue, occlusion);
47 47
48 // This layer doesn't update any resources from the main thread side, 48 // This layer doesn't update any resources from the main thread side,
49 // but repaint rects need to be sent to the layer impl via commit. 49 // but repaint rects need to be sent to the layer impl via commit.
50 return updated || !update_rect_.IsEmpty(); 50 return updated || !update_rect_.IsEmpty();
51 } 51 }
52 52
53 } // namespace cc 53 } // namespace cc
OLDNEW
« no previous file with comments | « cc/layers/heads_up_display_layer_impl_unittest.cc ('k') | cc/layers/io_surface_layer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698