| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010, Google Inc. All rights reserved. | 2 * Copyright (C) 2010, Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | 21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 22 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 22 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 23 */ | 23 */ |
| 24 | 24 |
| 25 #include "core/inspector/InspectorCSSAgent.h" | 25 #include "core/inspector/InspectorCSSAgent.h" |
| 26 | 26 |
| 27 #include "bindings/core/v8/ExceptionState.h" | 27 #include "bindings/core/v8/ExceptionState.h" |
| 28 #include "bindings/core/v8/ExceptionStatePlaceholder.h" | 28 #include "bindings/core/v8/ExceptionStatePlaceholder.h" |
| 29 #include "core/CSSPropertyNames.h" | 29 #include "core/CSSPropertyNames.h" |
| 30 #include "core/StylePropertyShorthand.h" | 30 #include "core/StylePropertyShorthand.h" |
| 31 #include "core/animation/css/CSSAnimationData.h" |
| 31 #include "core/css/CSSColorValue.h" | 32 #include "core/css/CSSColorValue.h" |
| 32 #include "core/css/CSSComputedStyleDeclaration.h" | 33 #include "core/css/CSSComputedStyleDeclaration.h" |
| 33 #include "core/css/CSSDefaultStyleSheets.h" | 34 #include "core/css/CSSDefaultStyleSheets.h" |
| 34 #include "core/css/CSSGradientValue.h" | 35 #include "core/css/CSSGradientValue.h" |
| 35 #include "core/css/CSSImportRule.h" | 36 #include "core/css/CSSImportRule.h" |
| 36 #include "core/css/CSSKeyframeRule.h" | 37 #include "core/css/CSSKeyframeRule.h" |
| 37 #include "core/css/CSSMediaRule.h" | 38 #include "core/css/CSSMediaRule.h" |
| 38 #include "core/css/CSSRule.h" | 39 #include "core/css/CSSRule.h" |
| 39 #include "core/css/CSSRuleList.h" | 40 #include "core/css/CSSRuleList.h" |
| 40 #include "core/css/CSSStyleRule.h" | 41 #include "core/css/CSSStyleRule.h" |
| (...skipping 2032 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2073 visitor->trace(m_cssStyleSheetToInspectorStyleSheet); | 2074 visitor->trace(m_cssStyleSheetToInspectorStyleSheet); |
| 2074 visitor->trace(m_documentToCSSStyleSheets); | 2075 visitor->trace(m_documentToCSSStyleSheets); |
| 2075 visitor->trace(m_invalidatedDocuments); | 2076 visitor->trace(m_invalidatedDocuments); |
| 2076 visitor->trace(m_nodeToInspectorStyleSheet); | 2077 visitor->trace(m_nodeToInspectorStyleSheet); |
| 2077 visitor->trace(m_documentToViaInspectorStyleSheet); | 2078 visitor->trace(m_documentToViaInspectorStyleSheet); |
| 2078 visitor->trace(m_inspectorUserAgentStyleSheet); | 2079 visitor->trace(m_inspectorUserAgentStyleSheet); |
| 2079 InspectorBaseAgent::trace(visitor); | 2080 InspectorBaseAgent::trace(visitor); |
| 2080 } | 2081 } |
| 2081 | 2082 |
| 2082 } // namespace blink | 2083 } // namespace blink |
| OLD | NEW |