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

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

Issue 347643002: Reduce forward declarations in core/dom (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase against ToT Created 6 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
« no previous file with comments | « Source/core/dom/ShadowTreeStyleSheetCollection.h ('k') | Source/core/dom/Text.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 /* 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 27 matching lines...) Expand all
38 #include "wtf/ListHashSet.h" 38 #include "wtf/ListHashSet.h"
39 #include "wtf/RefPtr.h" 39 #include "wtf/RefPtr.h"
40 #include "wtf/TemporaryChange.h" 40 #include "wtf/TemporaryChange.h"
41 #include "wtf/Vector.h" 41 #include "wtf/Vector.h"
42 #include "wtf/text/WTFString.h" 42 #include "wtf/text/WTFString.h"
43 43
44 namespace WebCore { 44 namespace WebCore {
45 45
46 class CSSFontSelector; 46 class CSSFontSelector;
47 class CSSStyleSheet; 47 class CSSStyleSheet;
48 class FontSelector;
49 class Node; 48 class Node;
50 class RuleFeatureSet; 49 class RuleFeatureSet;
51 class ShadowTreeStyleSheetCollection; 50 class ShadowTreeStyleSheetCollection;
52 class StyleResolver;
53 class StyleRuleFontFace; 51 class StyleRuleFontFace;
54 class StyleSheet; 52 class StyleSheet;
55 class StyleSheetCollection;
56 class StyleSheetContents; 53 class StyleSheetContents;
57 class StyleSheetList;
58 54
59 class StyleEngine FINAL : public CSSFontSelectorClient { 55 class StyleEngine FINAL : public CSSFontSelectorClient {
60 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED; 56 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
61 public: 57 public:
62 58
63 class IgnoringPendingStylesheet : public TemporaryChange<bool> { 59 class IgnoringPendingStylesheet : public TemporaryChange<bool> {
64 public: 60 public:
65 IgnoringPendingStylesheet(StyleEngine* engine) 61 IgnoringPendingStylesheet(StyleEngine* engine)
66 : TemporaryChange<bool>(engine->m_ignorePendingStylesheets, true) 62 : TemporaryChange<bool>(engine->m_ignorePendingStylesheets, true)
67 { 63 {
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 261
266 WillBeHeapHashMap<AtomicString, RawPtrWillBeMember<StyleSheetContents> > m_t extToSheetCache; 262 WillBeHeapHashMap<AtomicString, RawPtrWillBeMember<StyleSheetContents> > m_t extToSheetCache;
267 WillBeHeapHashMap<RawPtrWillBeMember<StyleSheetContents>, AtomicString> m_sh eetToTextCache; 263 WillBeHeapHashMap<RawPtrWillBeMember<StyleSheetContents>, AtomicString> m_sh eetToTextCache;
268 264
269 RefPtrWillBeMember<ProcessingInstruction> m_xslStyleSheet; 265 RefPtrWillBeMember<ProcessingInstruction> m_xslStyleSheet;
270 }; 266 };
271 267
272 } 268 }
273 269
274 #endif 270 #endif
OLDNEW
« no previous file with comments | « Source/core/dom/ShadowTreeStyleSheetCollection.h ('k') | Source/core/dom/Text.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698