| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "core/css/MediaValuesDynamic.h" | 5 #include "core/css/MediaValuesDynamic.h" |
| 6 | 6 |
| 7 #include "core/css/CSSHelper.h" | 7 #include "core/css/CSSHelper.h" |
| 8 #include "core/css/CSSPrimitiveValue.h" | 8 #include "core/css/CSSPrimitiveValue.h" |
| 9 #include "core/css/CSSToLengthConversionData.h" | 9 #include "core/css/CSSToLengthConversionData.h" |
| 10 #include "core/css/MediaValuesCached.h" | 10 #include "core/css/MediaValuesCached.h" |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 { | 145 { |
| 146 return m_frame; | 146 return m_frame; |
| 147 } | 147 } |
| 148 | 148 |
| 149 DEFINE_TRACE(MediaValuesDynamic) | 149 DEFINE_TRACE(MediaValuesDynamic) |
| 150 { | 150 { |
| 151 visitor->trace(m_frame); | 151 visitor->trace(m_frame); |
| 152 MediaValues::trace(visitor); | 152 MediaValues::trace(visitor); |
| 153 } | 153 } |
| 154 | 154 |
| 155 } // namespace | 155 } // namespace blink |
| OLD | NEW |