| 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 10 matching lines...) Expand all Loading... |
| 21 */ | 21 */ |
| 22 | 22 |
| 23 #ifndef RuleFeature_h | 23 #ifndef RuleFeature_h |
| 24 #define RuleFeature_h | 24 #define RuleFeature_h |
| 25 | 25 |
| 26 #include "core/CoreExport.h" | 26 #include "core/CoreExport.h" |
| 27 #include "core/css/CSSSelector.h" | 27 #include "core/css/CSSSelector.h" |
| 28 #include "core/css/MediaQueryEvaluator.h" | 28 #include "core/css/MediaQueryEvaluator.h" |
| 29 #include "core/css/invalidation/InvalidationSet.h" | 29 #include "core/css/invalidation/InvalidationSet.h" |
| 30 #include "platform/heap/Handle.h" | 30 #include "platform/heap/Handle.h" |
| 31 #include "wtf/Forward.h" | 31 #include "platform/wtf/Forward.h" |
| 32 #include "wtf/HashSet.h" | 32 #include "platform/wtf/HashSet.h" |
| 33 #include "wtf/text/AtomicStringHash.h" | 33 #include "platform/wtf/text/AtomicStringHash.h" |
| 34 | 34 |
| 35 namespace blink { | 35 namespace blink { |
| 36 | 36 |
| 37 class ContainerNode; | 37 class ContainerNode; |
| 38 struct InvalidationLists; | 38 struct InvalidationLists; |
| 39 class QualifiedName; | 39 class QualifiedName; |
| 40 class RuleData; | 40 class RuleData; |
| 41 class StyleRule; | 41 class StyleRule; |
| 42 | 42 |
| 43 struct RuleFeature { | 43 struct RuleFeature { |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 | 302 |
| 303 // If true, the RuleFeatureSet is alive and can be used. | 303 // If true, the RuleFeatureSet is alive and can be used. |
| 304 unsigned is_alive_ : 1; | 304 unsigned is_alive_ : 1; |
| 305 | 305 |
| 306 friend class RuleFeatureSetTest; | 306 friend class RuleFeatureSetTest; |
| 307 }; | 307 }; |
| 308 | 308 |
| 309 } // namespace blink | 309 } // namespace blink |
| 310 | 310 |
| 311 #endif // RuleFeature_h | 311 #endif // RuleFeature_h |
| OLD | NEW |