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

Side by Side Diff: Source/core/page/FrameView.cpp

Issue 24921002: Make compositingState explicit (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: ready for review Created 7 years, 2 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org> 2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org>
3 * 1999 Lars Knoll <knoll@kde.org> 3 * 1999 Lars Knoll <knoll@kde.org>
4 * 1999 Antti Koivisto <koivisto@kde.org> 4 * 1999 Antti Koivisto <koivisto@kde.org>
5 * 2000 Dirk Mueller <mueller@kde.org> 5 * 2000 Dirk Mueller <mueller@kde.org>
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
7 * (C) 2006 Graham Dennis (graham.dennis@gmail.com) 7 * (C) 2006 Graham Dennis (graham.dennis@gmail.com)
8 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) 8 * (C) 2006 Alexey Proskuryakov (ap@nypop.com)
9 * Copyright (C) 2009 Google Inc. All rights reserved. 9 * Copyright (C) 2009 Google Inc. All rights reserved.
10 * 10 *
(...skipping 1232 matching lines...) Expand 10 before | Expand all | Expand 10 after
1243 { 1243 {
1244 for (Frame* frame = m_frame.get(); frame; frame = frame->tree()->traverseNex t(m_frame.get())) { 1244 for (Frame* frame = m_frame.get(); frame; frame = frame->tree()->traverseNex t(m_frame.get())) {
1245 if (FrameView* view = frame->view()) 1245 if (FrameView* view = frame->view())
1246 view->setCanBlitOnScroll(!view->useSlowRepaints()); 1246 view->setCanBlitOnScroll(!view->useSlowRepaints());
1247 } 1247 }
1248 } 1248 }
1249 1249
1250 bool FrameView::contentsInCompositedLayer() const 1250 bool FrameView::contentsInCompositedLayer() const
1251 { 1251 {
1252 RenderView* renderView = this->renderView(); 1252 RenderView* renderView = this->renderView();
1253 if (renderView && renderView->isComposited()) { 1253 if (renderView && renderView->compositingState() == PaintsIntoOwnBacking) {
1254 GraphicsLayer* layer = renderView->layer()->backing()->graphicsLayer(); 1254 GraphicsLayer* layer = renderView->layer()->backing()->graphicsLayer();
1255 if (layer && layer->drawsContent()) 1255 if (layer && layer->drawsContent())
1256 return true; 1256 return true;
1257 } 1257 }
1258 1258
1259 return false; 1259 return false;
1260 } 1260 }
1261 1261
1262 void FrameView::setCannotBlitToWindow() 1262 void FrameView::setCannotBlitToWindow()
1263 { 1263 {
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
1357 if (!renderer->style()->hasViewportConstrainedPosition()) 1357 if (!renderer->style()->hasViewportConstrainedPosition())
1358 continue; 1358 continue;
1359 1359
1360 // Fixed items should always have layers. 1360 // Fixed items should always have layers.
1361 ASSERT(renderer->hasLayer()); 1361 ASSERT(renderer->hasLayer());
1362 RenderLayer* layer = toRenderBoxModelObject(renderer)->layer(); 1362 RenderLayer* layer = toRenderBoxModelObject(renderer)->layer();
1363 1363
1364 // Composited layers may still actually paint into their ancestor. 1364 // Composited layers may still actually paint into their ancestor.
1365 // If that happens, the viewport constrained object needs to be 1365 // If that happens, the viewport constrained object needs to be
1366 // repainted on scroll. 1366 // repainted on scroll.
1367 if (layer->isComposited() && !layer->backing()->paintsIntoCompositedAnce stor()) 1367 if (layer->compositingState() == PaintsIntoOwnBacking)
1368 continue; 1368 continue;
1369 1369
1370 if (layer->viewportConstrainedNotCompositedReason() == RenderLayer::NotC ompositedForBoundsOutOfView 1370 if (layer->viewportConstrainedNotCompositedReason() == RenderLayer::NotC ompositedForBoundsOutOfView
1371 || layer->viewportConstrainedNotCompositedReason() == RenderLayer::N otCompositedForNoVisibleContent) { 1371 || layer->viewportConstrainedNotCompositedReason() == RenderLayer::N otCompositedForNoVisibleContent) {
1372 // Don't invalidate for invisible fixed layers. 1372 // Don't invalidate for invisible fixed layers.
1373 continue; 1373 continue;
1374 } 1374 }
1375 1375
1376 if (layer->hasAncestorWithFilterOutsets()) { 1376 if (layer->hasAncestorWithFilterOutsets()) {
1377 // If the fixed layer has a blur/drop-shadow filter applied on at le ast one of its parents, we cannot 1377 // If the fixed layer has a blur/drop-shadow filter applied on at le ast one of its parents, we cannot
(...skipping 2033 matching lines...) Expand 10 before | Expand all | Expand 10 after
3411 return frame().document()->existingAXObjectCache(); 3411 return frame().document()->existingAXObjectCache();
3412 return 0; 3412 return 0;
3413 } 3413 }
3414 3414
3415 bool FrameView::isMainFrame() const 3415 bool FrameView::isMainFrame() const
3416 { 3416 {
3417 return m_frame->page() && m_frame->page()->mainFrame() == m_frame; 3417 return m_frame->page() && m_frame->page()->mainFrame() == m_frame;
3418 } 3418 }
3419 3419
3420 } // namespace WebCore 3420 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698