| 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 | 3 * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All rights |
| 4 * reserved. | 4 * 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 * |
| 11 * This library is distributed in the hope that it will be useful, | 11 * This library is distributed in the hope that it will be useful, |
| 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 * Library General Public License for more details. | 14 * Library General Public License for more details. |
| 15 * | 15 * |
| 16 * You should have received a copy of the GNU Library General Public License | 16 * You should have received a copy of the GNU Library General Public License |
| 17 * along with this library; see the file COPYING.LIB. If not, write to | 17 * along with this library; see the file COPYING.LIB. If not, write to |
| 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 19 * Boston, MA 02110-1301, USA. | 19 * Boston, MA 02110-1301, USA. |
| 20 */ | 20 */ |
| 21 | 21 |
| 22 #ifndef StyleSheetContents_h | 22 #ifndef StyleSheetContents_h |
| 23 #define StyleSheetContents_h | 23 #define StyleSheetContents_h |
| 24 | 24 |
| 25 #include "core/CoreExport.h" | 25 #include "core/CoreExport.h" |
| 26 #include "core/css/RuleSet.h" | 26 #include "core/css/RuleSet.h" |
| 27 #include "core/css/parser/CSSParserContext.h" | 27 #include "core/css/parser/CSSParserContext.h" |
| 28 #include "platform/heap/Handle.h" | 28 #include "platform/heap/Handle.h" |
| 29 #include "platform/weborigin/KURL.h" | 29 #include "platform/weborigin/KURL.h" |
| 30 #include "wtf/HashMap.h" | 30 #include "platform/wtf/HashMap.h" |
| 31 #include "wtf/Vector.h" | 31 #include "platform/wtf/Vector.h" |
| 32 #include "wtf/text/AtomicStringHash.h" | 32 #include "platform/wtf/text/AtomicStringHash.h" |
| 33 #include "wtf/text/StringHash.h" | 33 #include "platform/wtf/text/StringHash.h" |
| 34 #include "wtf/text/TextPosition.h" | 34 #include "platform/wtf/text/TextPosition.h" |
| 35 | 35 |
| 36 namespace blink { | 36 namespace blink { |
| 37 | 37 |
| 38 class CSSStyleSheet; | 38 class CSSStyleSheet; |
| 39 class CSSStyleSheetResource; | 39 class CSSStyleSheetResource; |
| 40 class Document; | 40 class Document; |
| 41 class Node; | 41 class Node; |
| 42 class SecurityOrigin; | 42 class SecurityOrigin; |
| 43 class StyleRuleBase; | 43 class StyleRuleBase; |
| 44 class StyleRuleFontFace; | 44 class StyleRuleFontFace; |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 HeapHashSet<WeakMember<CSSStyleSheet>> loading_clients_; | 222 HeapHashSet<WeakMember<CSSStyleSheet>> loading_clients_; |
| 223 HeapHashSet<WeakMember<CSSStyleSheet>> completed_clients_; | 223 HeapHashSet<WeakMember<CSSStyleSheet>> completed_clients_; |
| 224 | 224 |
| 225 Member<RuleSet> rule_set_; | 225 Member<RuleSet> rule_set_; |
| 226 String source_map_url_; | 226 String source_map_url_; |
| 227 }; | 227 }; |
| 228 | 228 |
| 229 } // namespace blink | 229 } // namespace blink |
| 230 | 230 |
| 231 #endif | 231 #endif |
| OLD | NEW |