| 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, 2012 Apple Inc. All rights reserved. | 3 * Copyright (C) 2004, 2006, 2007, 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 23 matching lines...) Expand all Loading... |
| 34 #include "core/css/parser/CSSParserContext.h" | 34 #include "core/css/parser/CSSParserContext.h" |
| 35 #include "core/dom/Document.h" | 35 #include "core/dom/Document.h" |
| 36 #include "core/dom/ExceptionCode.h" | 36 #include "core/dom/ExceptionCode.h" |
| 37 #include "core/dom/Node.h" | 37 #include "core/dom/Node.h" |
| 38 #include "core/dom/StyleEngine.h" | 38 #include "core/dom/StyleEngine.h" |
| 39 #include "core/frame/Deprecation.h" | 39 #include "core/frame/Deprecation.h" |
| 40 #include "core/html/HTMLStyleElement.h" | 40 #include "core/html/HTMLStyleElement.h" |
| 41 #include "core/probe/CoreProbes.h" | 41 #include "core/probe/CoreProbes.h" |
| 42 #include "core/svg/SVGStyleElement.h" | 42 #include "core/svg/SVGStyleElement.h" |
| 43 #include "platform/weborigin/SecurityOrigin.h" | 43 #include "platform/weborigin/SecurityOrigin.h" |
| 44 #include "wtf/text/StringBuilder.h" | 44 #include "platform/wtf/text/StringBuilder.h" |
| 45 | 45 |
| 46 namespace blink { | 46 namespace blink { |
| 47 | 47 |
| 48 class StyleSheetCSSRuleList final : public CSSRuleList { | 48 class StyleSheetCSSRuleList final : public CSSRuleList { |
| 49 public: | 49 public: |
| 50 static StyleSheetCSSRuleList* Create(CSSStyleSheet* sheet) { | 50 static StyleSheetCSSRuleList* Create(CSSStyleSheet* sheet) { |
| 51 return new StyleSheetCSSRuleList(sheet); | 51 return new StyleSheetCSSRuleList(sheet); |
| 52 } | 52 } |
| 53 | 53 |
| 54 DEFINE_INLINE_VIRTUAL_TRACE() { | 54 DEFINE_INLINE_VIRTUAL_TRACE() { |
| (...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 455 visitor->Trace(device_dependent_media_query_results_); | 455 visitor->Trace(device_dependent_media_query_results_); |
| 456 visitor->Trace(owner_node_); | 456 visitor->Trace(owner_node_); |
| 457 visitor->Trace(owner_rule_); | 457 visitor->Trace(owner_rule_); |
| 458 visitor->Trace(media_cssom_wrapper_); | 458 visitor->Trace(media_cssom_wrapper_); |
| 459 visitor->Trace(child_rule_cssom_wrappers_); | 459 visitor->Trace(child_rule_cssom_wrappers_); |
| 460 visitor->Trace(rule_list_cssom_wrapper_); | 460 visitor->Trace(rule_list_cssom_wrapper_); |
| 461 StyleSheet::Trace(visitor); | 461 StyleSheet::Trace(visitor); |
| 462 } | 462 } |
| 463 | 463 |
| 464 } // namespace blink | 464 } // namespace blink |
| OLD | NEW |