| OLD | NEW |
| 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, 2010, 2012 Apple Inc. All r
ights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 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) 2010 Nokia Corporation and/or its subsidiary(-ies) | 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
| 9 * Copyright (C) 2011 Google Inc. All rights reserved. | 9 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 10 * | 10 * |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 class CSSFontSelector; | 46 class CSSFontSelector; |
| 47 class CSSStyleSheet; | 47 class CSSStyleSheet; |
| 48 class Node; | 48 class Node; |
| 49 class RuleFeatureSet; | 49 class RuleFeatureSet; |
| 50 class ShadowTreeStyleSheetCollection; | 50 class ShadowTreeStyleSheetCollection; |
| 51 class StyleRuleFontFace; | 51 class StyleRuleFontFace; |
| 52 class StyleSheet; | 52 class StyleSheet; |
| 53 class StyleSheetContents; | 53 class StyleSheetContents; |
| 54 | 54 |
| 55 class StyleEngine final : public CSSFontSelectorClient { | 55 class StyleEngine final : public CSSFontSelectorClient { |
| 56 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED; | 56 WTF_MAKE_FAST_ALLOCATED; |
| 57 public: | 57 public: |
| 58 | 58 |
| 59 class IgnoringPendingStylesheet : public TemporaryChange<bool> { | 59 class IgnoringPendingStylesheet : public TemporaryChange<bool> { |
| 60 public: | 60 public: |
| 61 IgnoringPendingStylesheet(StyleEngine* engine) | 61 IgnoringPendingStylesheet(StyleEngine* engine) |
| 62 : TemporaryChange<bool>(engine->m_ignorePendingStylesheets, true) | 62 : TemporaryChange<bool>(engine->m_ignorePendingStylesheets, true) |
| 63 { | 63 { |
| 64 } | 64 } |
| 65 }; | 65 }; |
| 66 | 66 |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 | 202 |
| 203 RefPtr<CSSFontSelector> m_fontSelector; | 203 RefPtr<CSSFontSelector> m_fontSelector; |
| 204 | 204 |
| 205 HashMap<AtomicString, RawPtr<StyleSheetContents> > m_textToSheetCache; | 205 HashMap<AtomicString, RawPtr<StyleSheetContents> > m_textToSheetCache; |
| 206 HashMap<RawPtr<StyleSheetContents>, AtomicString> m_sheetToTextCache; | 206 HashMap<RawPtr<StyleSheetContents>, AtomicString> m_sheetToTextCache; |
| 207 }; | 207 }; |
| 208 | 208 |
| 209 } | 209 } |
| 210 | 210 |
| 211 #endif | 211 #endif |
| OLD | NEW |