| 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_display_item_list_impl.h" | 5 #include "cc/blink/web_display_item_list_impl.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 } | 144 } |
| 145 | 145 |
| 146 void WebDisplayItemListImpl::appendEndScrollItem() { | 146 void WebDisplayItemListImpl::appendEndScrollItem() { |
| 147 appendEndTransformItem(); | 147 appendEndTransformItem(); |
| 148 } | 148 } |
| 149 | 149 |
| 150 void WebDisplayItemListImpl::setIsSuitableForGpuRasterization(bool isSuitable) { | 150 void WebDisplayItemListImpl::setIsSuitableForGpuRasterization(bool isSuitable) { |
| 151 display_item_list_->SetIsSuitableForGpuRasterization(isSuitable); | 151 display_item_list_->SetIsSuitableForGpuRasterization(isSuitable); |
| 152 } | 152 } |
| 153 | 153 |
| 154 void WebDisplayItemListImpl::setImpliedColorSpace( | |
| 155 const gfx::ColorSpace& implied_color_space) { | |
| 156 display_item_list_->SetImpliedColorSpace(implied_color_space); | |
| 157 } | |
| 158 | |
| 159 WebDisplayItemListImpl::~WebDisplayItemListImpl() { | 154 WebDisplayItemListImpl::~WebDisplayItemListImpl() { |
| 160 } | 155 } |
| 161 | 156 |
| 162 } // namespace cc_blink | 157 } // namespace cc_blink |
| OLD | NEW |