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 21 matching lines...) Expand all Loading... |
32 #include "core/css/CSSFontSelectorClient.h" | 32 #include "core/css/CSSFontSelectorClient.h" |
33 #include "core/css/invalidation/StyleInvalidator.h" | 33 #include "core/css/invalidation/StyleInvalidator.h" |
34 #include "core/css/resolver/StyleResolver.h" | 34 #include "core/css/resolver/StyleResolver.h" |
35 #include "core/css/resolver/StyleResolverStats.h" | 35 #include "core/css/resolver/StyleResolverStats.h" |
36 #include "core/dom/Document.h" | 36 #include "core/dom/Document.h" |
37 #include "core/dom/DocumentOrderedList.h" | 37 #include "core/dom/DocumentOrderedList.h" |
38 #include "core/dom/DocumentStyleSheetCollection.h" | 38 #include "core/dom/DocumentStyleSheetCollection.h" |
39 #include "platform/heap/Handle.h" | 39 #include "platform/heap/Handle.h" |
40 #include "wtf/Allocator.h" | 40 #include "wtf/Allocator.h" |
41 #include "wtf/ListHashSet.h" | 41 #include "wtf/ListHashSet.h" |
42 #include "wtf/RefPtr.h" | |
43 #include "wtf/TemporaryChange.h" | 42 #include "wtf/TemporaryChange.h" |
44 #include "wtf/Vector.h" | 43 #include "wtf/Vector.h" |
45 #include "wtf/text/WTFString.h" | 44 #include "wtf/text/WTFString.h" |
46 | 45 |
47 namespace blink { | 46 namespace blink { |
48 | 47 |
49 class CSSFontSelector; | 48 class CSSFontSelector; |
50 class CSSStyleSheet; | 49 class CSSStyleSheet; |
51 class Node; | 50 class Node; |
52 class RuleFeatureSet; | 51 class RuleFeatureSet; |
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
275 | 274 |
276 OwnPtr<StyleResolverStats> m_styleResolverStats; | 275 OwnPtr<StyleResolverStats> m_styleResolverStats; |
277 unsigned m_styleForElementCount = 0; | 276 unsigned m_styleForElementCount = 0; |
278 | 277 |
279 friend class StyleEngineTest; | 278 friend class StyleEngineTest; |
280 }; | 279 }; |
281 | 280 |
282 } // namespace blink | 281 } // namespace blink |
283 | 282 |
284 #endif | 283 #endif |
OLD | NEW |