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 | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All |
7 * rights reserved. | 7 * rights reserved. |
8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. | 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. |
9 * (http://www.torchmobile.com/) | 9 * (http://www.torchmobile.com/) |
10 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 10 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
(...skipping 13 matching lines...) Expand all Loading... |
24 * along with this library; see the file COPYING.LIB. If not, write to | 24 * along with this library; see the file COPYING.LIB. If not, write to |
25 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 25 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
26 * Boston, MA 02110-1301, USA. | 26 * Boston, MA 02110-1301, USA. |
27 * | 27 * |
28 */ | 28 */ |
29 | 29 |
30 #ifndef StyleEngine_h | 30 #ifndef StyleEngine_h |
31 #define StyleEngine_h | 31 #define StyleEngine_h |
32 | 32 |
33 #include <memory> | 33 #include <memory> |
34 #include "bindings/core/v8/TraceWrapperMember.h" | |
35 #include "core/CoreExport.h" | 34 #include "core/CoreExport.h" |
36 #include "core/css/ActiveStyleSheets.h" | 35 #include "core/css/ActiveStyleSheets.h" |
37 #include "core/css/CSSFontSelectorClient.h" | 36 #include "core/css/CSSFontSelectorClient.h" |
38 #include "core/css/CSSGlobalRuleSet.h" | 37 #include "core/css/CSSGlobalRuleSet.h" |
39 #include "core/css/invalidation/StyleInvalidator.h" | 38 #include "core/css/invalidation/StyleInvalidator.h" |
40 #include "core/css/resolver/StyleResolver.h" | 39 #include "core/css/resolver/StyleResolver.h" |
41 #include "core/css/resolver/StyleResolverStats.h" | 40 #include "core/css/resolver/StyleResolverStats.h" |
42 #include "core/dom/Document.h" | 41 #include "core/dom/Document.h" |
43 #include "core/dom/DocumentOrderedList.h" | 42 #include "core/dom/DocumentOrderedList.h" |
44 #include "core/dom/DocumentStyleSheetCollection.h" | 43 #include "core/dom/DocumentStyleSheetCollection.h" |
45 #include "core/dom/StyleEngineContext.h" | 44 #include "core/dom/StyleEngineContext.h" |
46 #include "platform/bindings/ScriptWrappable.h" | 45 #include "platform/bindings/ScriptWrappable.h" |
| 46 #include "platform/bindings/TraceWrapperMember.h" |
47 #include "platform/heap/Handle.h" | 47 #include "platform/heap/Handle.h" |
48 #include "platform/wtf/Allocator.h" | 48 #include "platform/wtf/Allocator.h" |
49 #include "platform/wtf/AutoReset.h" | 49 #include "platform/wtf/AutoReset.h" |
50 #include "platform/wtf/ListHashSet.h" | 50 #include "platform/wtf/ListHashSet.h" |
51 #include "platform/wtf/Vector.h" | 51 #include "platform/wtf/Vector.h" |
52 #include "platform/wtf/text/WTFString.h" | 52 #include "platform/wtf/text/WTFString.h" |
53 | 53 |
54 namespace blink { | 54 namespace blink { |
55 | 55 |
56 class CSSFontSelector; | 56 class CSSFontSelector; |
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
386 | 386 |
387 std::unique_ptr<StyleResolverStats> style_resolver_stats_; | 387 std::unique_ptr<StyleResolverStats> style_resolver_stats_; |
388 unsigned style_for_element_count_ = 0; | 388 unsigned style_for_element_count_ = 0; |
389 | 389 |
390 friend class StyleEngineTest; | 390 friend class StyleEngineTest; |
391 }; | 391 }; |
392 | 392 |
393 } // namespace blink | 393 } // namespace blink |
394 | 394 |
395 #endif | 395 #endif |
OLD | NEW |