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

Side by Side Diff: Source/core/dom/StyleEngine.cpp

Issue 1134173002: Get rid of TreeBoundaryCrossingRules. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Missing resolver decrement and adjusted test. Created 5 years, 7 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) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r ights reserved.
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. 8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved.
9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. 10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved.
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 , m_isMaster(!document.importsController() || document.importsController()-> master() == &document) 56 , m_isMaster(!document.importsController() || document.importsController()-> master() == &document)
57 , m_pendingStylesheets(0) 57 , m_pendingStylesheets(0)
58 , m_documentStyleSheetCollection(DocumentStyleSheetCollection::create(docume nt)) 58 , m_documentStyleSheetCollection(DocumentStyleSheetCollection::create(docume nt))
59 , m_documentScopeDirty(true) 59 , m_documentScopeDirty(true)
60 , m_usesSiblingRules(false) 60 , m_usesSiblingRules(false)
61 , m_usesFirstLineRules(false) 61 , m_usesFirstLineRules(false)
62 , m_usesWindowInactiveSelector(false) 62 , m_usesWindowInactiveSelector(false)
63 , m_usesFirstLetterRules(false) 63 , m_usesFirstLetterRules(false)
64 , m_usesRemUnits(false) 64 , m_usesRemUnits(false)
65 , m_maxDirectAdjacentSelectors(0) 65 , m_maxDirectAdjacentSelectors(0)
66 , m_treeBoundaryCrossingScopeCount(0)
66 , m_ignorePendingStylesheets(false) 67 , m_ignorePendingStylesheets(false)
67 , m_didCalculateResolver(false) 68 , m_didCalculateResolver(false)
68 // We don't need to create CSSFontSelector for imported document or 69 // We don't need to create CSSFontSelector for imported document or
69 // HTMLTemplateElement's document, because those documents have no frame. 70 // HTMLTemplateElement's document, because those documents have no frame.
70 , m_fontSelector(document.frame() ? CSSFontSelector::create(&document) : nul lptr) 71 , m_fontSelector(document.frame() ? CSSFontSelector::create(&document) : nul lptr)
71 { 72 {
72 if (m_fontSelector) 73 if (m_fontSelector)
73 m_fontSelector->registerForInvalidationCallbacks(this); 74 m_fontSelector->registerForInvalidationCallbacks(this);
74 } 75 }
75 76
(...skipping 718 matching lines...) Expand 10 before | Expand all | Expand 10 after
794 visitor->trace(m_dirtyTreeScopes); 795 visitor->trace(m_dirtyTreeScopes);
795 visitor->trace(m_activeTreeScopes); 796 visitor->trace(m_activeTreeScopes);
796 visitor->trace(m_fontSelector); 797 visitor->trace(m_fontSelector);
797 visitor->trace(m_textToSheetCache); 798 visitor->trace(m_textToSheetCache);
798 visitor->trace(m_sheetToTextCache); 799 visitor->trace(m_sheetToTextCache);
799 #endif 800 #endif
800 CSSFontSelectorClient::trace(visitor); 801 CSSFontSelectorClient::trace(visitor);
801 } 802 }
802 803
803 } 804 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698