| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/test/fake_scoped_ui_resource.h" | 5 #include "cc/test/fake_scoped_ui_resource.h" |
| 6 | 6 |
| 7 #include "cc/trees/layer_tree_host.h" | 7 #include "cc/trees/layer_tree_host.h" |
| 8 | 8 |
| 9 namespace cc { | 9 namespace cc { |
| 10 | 10 |
| 11 namespace { |
| 12 |
| 13 UIResourceBitmap CreateMockUIResourceBitmap() { |
| 14 SkBitmap skbitmap; |
| 15 skbitmap.setConfig(SkBitmap::kARGB_8888_Config, 1, 1); |
| 16 skbitmap.allocPixels(); |
| 17 skbitmap.setImmutable(); |
| 18 return UIResourceBitmap(skbitmap); |
| 19 } |
| 20 |
| 21 } // anonymous namespace |
| 22 |
| 11 scoped_ptr<FakeScopedUIResource> FakeScopedUIResource::Create( | 23 scoped_ptr<FakeScopedUIResource> FakeScopedUIResource::Create( |
| 12 LayerTreeHost* host) { | 24 LayerTreeHost* host) { |
| 13 return make_scoped_ptr(new FakeScopedUIResource(host)); | 25 return make_scoped_ptr(new FakeScopedUIResource(host)); |
| 14 } | 26 } |
| 15 | 27 |
| 16 FakeScopedUIResource::FakeScopedUIResource(LayerTreeHost* host) { | 28 FakeScopedUIResource::FakeScopedUIResource(LayerTreeHost* host) |
| 29 : ScopedUIResource(host, CreateMockUIResourceBitmap()) { |
| 30 // The constructor of ScopedUIResource already created a resource so we need |
| 31 // to delete the created resource to wipe the state clean. |
| 32 host_->DeleteUIResource(id_); |
| 17 ResetCounters(); | 33 ResetCounters(); |
| 18 bitmap_ = UIResourceBitmap::Create( | |
| 19 new uint8_t[1], | |
| 20 UIResourceBitmap::RGBA8, | |
| 21 UIResourceBitmap::CLAMP_TO_EDGE, | |
| 22 gfx::Size(1, 1)); | |
| 23 host_ = host; | |
| 24 id_ = host_->CreateUIResource(this); | 34 id_ = host_->CreateUIResource(this); |
| 25 } | 35 } |
| 26 | 36 |
| 27 scoped_refptr<UIResourceBitmap> FakeScopedUIResource::GetBitmap( | 37 UIResourceBitmap FakeScopedUIResource::GetBitmap(UIResourceId uid, |
| 28 UIResourceId uid, | 38 bool resource_lost) { |
| 29 bool resource_lost) { | |
| 30 resource_create_count++; | 39 resource_create_count++; |
| 31 if (resource_lost) | 40 if (resource_lost) |
| 32 lost_resource_count++; | 41 lost_resource_count++; |
| 33 return ScopedUIResource::GetBitmap(uid, resource_lost); | 42 return ScopedUIResource::GetBitmap(uid, resource_lost); |
| 34 } | 43 } |
| 35 | 44 |
| 36 void FakeScopedUIResource::ResetCounters() { | 45 void FakeScopedUIResource::ResetCounters() { |
| 37 resource_create_count = 0; | 46 resource_create_count = 0; |
| 38 lost_resource_count = 0; | 47 lost_resource_count = 0; |
| 39 } | 48 } |
| 40 | 49 |
| 41 } // namespace cc | 50 } // namespace cc |
| OLD | NEW |