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

Side by Side Diff: third_party/WebKit/Source/web/LinkHighlightImpl.cpp

Issue 2051333005: Let FrameView track object paint invalidations (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@TrackInvalidation
Patch Set: x Created 4 years, 6 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 359
360 bool hasLayoutObject = m_node && m_node->layoutObject(); 360 bool hasLayoutObject = m_node && m_node->layoutObject();
361 if (hasLayoutObject) { 361 if (hasLayoutObject) {
362 const LayoutBoxModelObject& paintInvalidationContainer = m_node->layoutO bject()->containerForPaintInvalidation(); 362 const LayoutBoxModelObject& paintInvalidationContainer = m_node->layoutO bject()->containerForPaintInvalidation();
363 attachLinkHighlightToCompositingLayer(paintInvalidationContainer); 363 attachLinkHighlightToCompositingLayer(paintInvalidationContainer);
364 if (computeHighlightLayerPathAndPosition(paintInvalidationContainer)) { 364 if (computeHighlightLayerPathAndPosition(paintInvalidationContainer)) {
365 // We only need to invalidate the layer if the highlight size has ch anged, otherwise 365 // We only need to invalidate the layer if the highlight size has ch anged, otherwise
366 // we can just re-position the layer without needing to repaint. 366 // we can just re-position the layer without needing to repaint.
367 m_contentLayer->layer()->invalidate(); 367 m_contentLayer->layer()->invalidate();
368 368
369 if (m_currentGraphicsLayer && m_currentGraphicsLayer->isTrackingOrCh eckingPaintInvalidations()) 369 if (m_currentGraphicsLayer)
370 m_currentGraphicsLayer->trackPaintInvalidation(LinkHighlightDisp layItemClientForTracking(), enclosingIntRect(FloatRect(layer()->position().x, la yer()->position().y, layer()->bounds().width, layer()->bounds().height)), PaintI nvalidationFull); 370 m_currentGraphicsLayer->trackPaintInvalidation(LinkHighlightDisp layItemClientForTracking(), enclosingIntRect(FloatRect(layer()->position().x, la yer()->position().y, layer()->bounds().width, layer()->bounds().height)), PaintI nvalidationFull);
371 } 371 }
372 } else { 372 } else {
373 clearGraphicsLayerLinkHighlightPointer(); 373 clearGraphicsLayerLinkHighlightPointer();
374 releaseResources(); 374 releaseResources();
375 } 375 }
376 } 376 }
377 377
378 void LinkHighlightImpl::clearCurrentGraphicsLayer() 378 void LinkHighlightImpl::clearCurrentGraphicsLayer()
379 { 379 {
(...skipping 11 matching lines...) Expand all
391 { 391 {
392 return clipLayer(); 392 return clipLayer();
393 } 393 }
394 394
395 CompositorAnimationPlayer* LinkHighlightImpl::compositorPlayer() const 395 CompositorAnimationPlayer* LinkHighlightImpl::compositorPlayer() const
396 { 396 {
397 return m_compositorPlayer.get(); 397 return m_compositorPlayer.get();
398 } 398 }
399 399
400 } // namespace blink 400 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698