| 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/css/CSSKeyframesRule.h" | 27 #include "core/css/CSSKeyframesRule.h" |
| 28 #include "core/css/MediaQueryEvaluator.h" | 28 #include "core/css/MediaQueryEvaluator.h" |
| 29 #include "core/css/RuleFeature.h" | 29 #include "core/css/RuleFeature.h" |
| 30 #include "core/css/StyleRule.h" | 30 #include "core/css/StyleRule.h" |
| 31 #include "core/css/resolver/MediaQueryResult.h" | 31 #include "core/css/resolver/MediaQueryResult.h" |
| 32 #include "platform/heap/HeapLinkedStack.h" | 32 #include "platform/heap/HeapLinkedStack.h" |
| 33 #include "platform/heap/HeapTerminatedArray.h" | 33 #include "platform/heap/HeapTerminatedArray.h" |
| 34 #include "wtf/Forward.h" | 34 #include "wtf/Forward.h" |
| 35 #include "wtf/HashMap.h" | 35 #include "wtf/HashMap.h" |
| 36 #include "wtf/LinkedStack.h" | |
| 37 #include "wtf/TerminatedArray.h" | 36 #include "wtf/TerminatedArray.h" |
| 38 | 37 |
| 39 namespace blink { | 38 namespace blink { |
| 40 | 39 |
| 41 enum AddRuleFlags { | 40 enum AddRuleFlags { |
| 42 RuleHasNoSpecialState = 0, | 41 RuleHasNoSpecialState = 0, |
| 43 RuleHasDocumentSecurityOrigin = 1, | 42 RuleHasDocumentSecurityOrigin = 1, |
| 44 }; | 43 }; |
| 45 | 44 |
| 46 enum PropertyWhitelistType { | 45 enum PropertyWhitelistType { |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 Member<PendingRuleMaps> m_pendingRules; | 312 Member<PendingRuleMaps> m_pendingRules; |
| 314 | 313 |
| 315 #ifndef NDEBUG | 314 #ifndef NDEBUG |
| 316 HeapVector<RuleData> m_allRules; | 315 HeapVector<RuleData> m_allRules; |
| 317 #endif | 316 #endif |
| 318 }; | 317 }; |
| 319 | 318 |
| 320 } // namespace blink | 319 } // namespace blink |
| 321 | 320 |
| 322 #endif // RuleSet_h | 321 #endif // RuleSet_h |
| OLD | NEW |