| 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 #ifndef MediaValuesCached_h | 5 #ifndef MediaValuesCached_h |
| 6 #define MediaValuesCached_h | 6 #define MediaValuesCached_h |
| 7 | 7 |
| 8 #include "core/CoreExport.h" | 8 #include "core/CoreExport.h" |
| 9 #include "core/css/MediaValues.h" | 9 #include "core/css/MediaValues.h" |
| 10 | 10 |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 | 84 |
| 85 bool isCached() const override { return true; } | 85 bool isCached() const override { return true; } |
| 86 protected: | 86 protected: |
| 87 MediaValuesCached(); | 87 MediaValuesCached(); |
| 88 MediaValuesCached(LocalFrame*); | 88 MediaValuesCached(LocalFrame*); |
| 89 MediaValuesCached(const MediaValuesCachedData&); | 89 MediaValuesCached(const MediaValuesCachedData&); |
| 90 | 90 |
| 91 MediaValuesCachedData m_data; | 91 MediaValuesCachedData m_data; |
| 92 }; | 92 }; |
| 93 | 93 |
| 94 } // namespace | 94 } // namespace blink |
| 95 | 95 |
| 96 #endif // MediaValuesCached_h | 96 #endif // MediaValuesCached_h |
| OLD | NEW |