| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. | 3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. |
| 4 * All rights reserved. | 4 * All rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 #include "core/CoreExport.h" | 26 #include "core/CoreExport.h" |
| 27 #include "core/animation/PropertyHandle.h" | 27 #include "core/animation/PropertyHandle.h" |
| 28 #include "core/css/ElementRuleCollector.h" | 28 #include "core/css/ElementRuleCollector.h" |
| 29 #include "core/css/PseudoStyleRequest.h" | 29 #include "core/css/PseudoStyleRequest.h" |
| 30 #include "core/css/SelectorChecker.h" | 30 #include "core/css/SelectorChecker.h" |
| 31 #include "core/css/SelectorFilter.h" | 31 #include "core/css/SelectorFilter.h" |
| 32 #include "core/css/resolver/CSSPropertyPriority.h" | 32 #include "core/css/resolver/CSSPropertyPriority.h" |
| 33 #include "core/css/resolver/MatchedPropertiesCache.h" | 33 #include "core/css/resolver/MatchedPropertiesCache.h" |
| 34 #include "core/css/resolver/StyleBuilder.h" | 34 #include "core/css/resolver/StyleBuilder.h" |
| 35 #include "platform/heap/Handle.h" | 35 #include "platform/heap/Handle.h" |
| 36 #include "wtf/Deque.h" | 36 #include "platform/wtf/Deque.h" |
| 37 #include "wtf/HashMap.h" | 37 #include "platform/wtf/HashMap.h" |
| 38 #include "wtf/HashSet.h" | 38 #include "platform/wtf/HashSet.h" |
| 39 #include "wtf/ListHashSet.h" | 39 #include "platform/wtf/ListHashSet.h" |
| 40 #include "wtf/RefPtr.h" | 40 #include "platform/wtf/RefPtr.h" |
| 41 #include "wtf/Vector.h" | 41 #include "platform/wtf/Vector.h" |
| 42 | 42 |
| 43 namespace blink { | 43 namespace blink { |
| 44 | 44 |
| 45 class AnimatableValue; | 45 class AnimatableValue; |
| 46 class CSSRuleList; | 46 class CSSRuleList; |
| 47 class CSSValue; | 47 class CSSValue; |
| 48 class Document; | 48 class Document; |
| 49 class Element; | 49 class Element; |
| 50 class Interpolation; | 50 class Interpolation; |
| 51 class MatchResult; | 51 class MatchResult; |
| (...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 bool was_viewport_resized_ = false; | 317 bool was_viewport_resized_ = false; |
| 318 | 318 |
| 319 unsigned style_sharing_depth_ = 0; | 319 unsigned style_sharing_depth_ = 0; |
| 320 HeapVector<Member<StyleSharingList>, kStyleSharingMaxDepth> | 320 HeapVector<Member<StyleSharingList>, kStyleSharingMaxDepth> |
| 321 style_sharing_lists_; | 321 style_sharing_lists_; |
| 322 }; | 322 }; |
| 323 | 323 |
| 324 } // namespace blink | 324 } // namespace blink |
| 325 | 325 |
| 326 #endif // StyleResolver_h | 326 #endif // StyleResolver_h |
| OLD | NEW |