OLD | NEW |
1 /* | 1 /* |
2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) | 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) |
3 * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All rights
reserved. | 3 * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All rights
reserved. |
4 * | 4 * |
5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
9 * | 9 * |
10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
(...skipping 12 matching lines...) Loading... |
23 | 23 |
24 #include "core/css/CSSRule.h" | 24 #include "core/css/CSSRule.h" |
25 #include "core/css/StyleSheet.h" | 25 #include "core/css/StyleSheet.h" |
26 #include "wtf/Noncopyable.h" | 26 #include "wtf/Noncopyable.h" |
27 #include "wtf/text/TextPosition.h" | 27 #include "wtf/text/TextPosition.h" |
28 | 28 |
29 namespace WebCore { | 29 namespace WebCore { |
30 | 30 |
31 class CSSCharsetRule; | 31 class CSSCharsetRule; |
32 class CSSImportRule; | 32 class CSSImportRule; |
33 class CSSParser; | 33 class BisonCSSParser; |
34 class CSSRule; | 34 class CSSRule; |
35 class CSSRuleList; | 35 class CSSRuleList; |
36 class CSSStyleSheet; | 36 class CSSStyleSheet; |
37 class CSSStyleSheetResource; | 37 class CSSStyleSheetResource; |
38 class Document; | 38 class Document; |
39 class ExceptionState; | 39 class ExceptionState; |
40 class MediaQuerySet; | 40 class MediaQuerySet; |
41 class SecurityOrigin; | 41 class SecurityOrigin; |
42 class StyleSheetContents; | 42 class StyleSheetContents; |
43 | 43 |
(...skipping 117 matching lines...) Loading... |
161 { | 161 { |
162 if (m_styleSheet) | 162 if (m_styleSheet) |
163 m_styleSheet->didMutateRules(); | 163 m_styleSheet->didMutateRules(); |
164 } | 164 } |
165 | 165 |
166 DEFINE_TYPE_CASTS(CSSStyleSheet, StyleSheet, sheet, sheet->isCSSStyleSheet(), sh
eet.isCSSStyleSheet()); | 166 DEFINE_TYPE_CASTS(CSSStyleSheet, StyleSheet, sheet, sheet->isCSSStyleSheet(), sh
eet.isCSSStyleSheet()); |
167 | 167 |
168 } // namespace | 168 } // namespace |
169 | 169 |
170 #endif | 170 #endif |
OLD | NEW |