| OLD | NEW | 
|     1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |     1 // Copyright (c) 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 "content/renderer/gpu/render_widget_compositor.h" |     5 #include "content/renderer/gpu/render_widget_compositor.h" | 
|     6  |     6  | 
|     7 #include <stddef.h> |     7 #include <stddef.h> | 
|     8 #include <limits> |     8 #include <limits> | 
|     9 #include <string> |     9 #include <string> | 
|    10 #include <utility> |    10 #include <utility> | 
| (...skipping 1122 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  1133   remote_proto_channel_receiver_->OnProtoReceived(std::move(deserialized)); |  1133   remote_proto_channel_receiver_->OnProtoReceived(std::move(deserialized)); | 
|  1134 } |  1134 } | 
|  1135  |  1135  | 
|  1136 void RenderWidgetCompositor::SetPaintedDeviceScaleFactor( |  1136 void RenderWidgetCompositor::SetPaintedDeviceScaleFactor( | 
|  1137     float device_scale) { |  1137     float device_scale) { | 
|  1138   layer_tree_host_->GetLayerTree()->SetPaintedDeviceScaleFactor(device_scale); |  1138   layer_tree_host_->GetLayerTree()->SetPaintedDeviceScaleFactor(device_scale); | 
|  1139 } |  1139 } | 
|  1140  |  1140  | 
|  1141 void RenderWidgetCompositor::SetDeviceColorSpace( |  1141 void RenderWidgetCompositor::SetDeviceColorSpace( | 
|  1142     const gfx::ColorSpace& color_space) { |  1142     const gfx::ColorSpace& color_space) { | 
|  1143   // TODO(ccameron): Plumb this to the cc compositor. |  1143   layer_tree_host_->GetLayerTree()->SetDeviceColorSpace(color_space); | 
|  1144 } |  1144 } | 
|  1145  |  1145  | 
|  1146 }  // namespace content |  1146 }  // namespace content | 
| OLD | NEW |