| 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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 } | 154 } |
| 155 | 155 |
| 156 void WebDisplayItemListImpl::appendEndScrollItem() { | 156 void WebDisplayItemListImpl::appendEndScrollItem() { |
| 157 appendEndTransformItem(); | 157 appendEndTransformItem(); |
| 158 } | 158 } |
| 159 | 159 |
| 160 void WebDisplayItemListImpl::setIsSuitableForGpuRasterization(bool isSuitable) { | 160 void WebDisplayItemListImpl::setIsSuitableForGpuRasterization(bool isSuitable) { |
| 161 display_item_list_->SetIsSuitableForGpuRasterization(isSuitable); | 161 display_item_list_->SetIsSuitableForGpuRasterization(isSuitable); |
| 162 } | 162 } |
| 163 | 163 |
| 164 void WebDisplayItemListImpl::setImpliedColorSpace( |
| 165 const gfx::ColorSpace& implied_color_space) { |
| 166 display_item_list_->SetImpliedColorSpace(implied_color_space); |
| 167 } |
| 168 |
| 164 WebDisplayItemListImpl::~WebDisplayItemListImpl() { | 169 WebDisplayItemListImpl::~WebDisplayItemListImpl() { |
| 165 } | 170 } |
| 166 | 171 |
| 167 } // namespace cc_blink | 172 } // namespace cc_blink |
| OLD | NEW |