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

Side by Side Diff: cc/blink/web_display_item_list_impl.cc

Issue 2702633002: color: Remove implied color space (Closed)
Patch Set: Rebase Created 3 years, 10 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/blink/web_display_item_list_impl.h ('k') | cc/playback/display_item_list.h » ('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 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
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
OLDNEW
« no previous file with comments | « cc/blink/web_display_item_list_impl.h ('k') | cc/playback/display_item_list.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698