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

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

Issue 877173002: Fixed position layer counter-scroll with main thread scroll offset fractional part (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix unittests Created 5 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_layer_impl.h ('k') | cc/layers/layer.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_layer_impl.h" 5 #include "cc/blink/web_layer_impl.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/debug/trace_event_impl.h" 8 #include "base/debug/trace_event_impl.h"
9 #include "base/lazy_instance.h" 9 #include "base/lazy_instance.h"
10 #include "base/strings/string_util.h" 10 #include "base/strings/string_util.h"
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 } 266 }
267 267
268 void WebLayerImpl::setForceRenderSurface(bool force_render_surface) { 268 void WebLayerImpl::setForceRenderSurface(bool force_render_surface) {
269 layer_->SetForceRenderSurface(force_render_surface); 269 layer_->SetForceRenderSurface(force_render_surface);
270 } 270 }
271 271
272 void WebLayerImpl::setScrollPositionDouble(blink::WebDoublePoint position) { 272 void WebLayerImpl::setScrollPositionDouble(blink::WebDoublePoint position) {
273 layer_->SetScrollOffset(gfx::ScrollOffset(position.x, position.y)); 273 layer_->SetScrollOffset(gfx::ScrollOffset(position.x, position.y));
274 } 274 }
275 275
276 void WebLayerImpl::setScrollPositionFractionalPart(
277 blink::WebDoublePoint position) {
278 layer_->SetScrollOffsetFractionalPart(gfx::Vector2dF(position.x, position.y));
279 }
280
276 blink::WebDoublePoint WebLayerImpl::scrollPositionDouble() const { 281 blink::WebDoublePoint WebLayerImpl::scrollPositionDouble() const {
277 return blink::WebDoublePoint(layer_->scroll_offset().x(), 282 return blink::WebDoublePoint(layer_->scroll_offset().x(),
278 layer_->scroll_offset().y()); 283 layer_->scroll_offset().y());
279 } 284 }
280 285
281 void WebLayerImpl::setScrollClipLayer(WebLayer* clip_layer) { 286 void WebLayerImpl::setScrollClipLayer(WebLayer* clip_layer) {
282 if (!clip_layer) { 287 if (!clip_layer) {
283 layer_->SetScrollClipLayerId(Layer::INVALID_ID); 288 layer_->SetScrollClipLayerId(Layer::INVALID_ID);
284 return; 289 return;
285 } 290 }
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
473 if (parent) 478 if (parent)
474 clip_parent = static_cast<WebLayerImpl*>(parent)->layer(); 479 clip_parent = static_cast<WebLayerImpl*>(parent)->layer();
475 layer_->SetClipParent(clip_parent); 480 layer_->SetClipParent(clip_parent);
476 } 481 }
477 482
478 Layer* WebLayerImpl::layer() const { 483 Layer* WebLayerImpl::layer() const {
479 return layer_.get(); 484 return layer_.get();
480 } 485 }
481 486
482 } // namespace cc_blink 487 } // namespace cc_blink
OLDNEW
« no previous file with comments | « cc/blink/web_layer_impl.h ('k') | cc/layers/layer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698