OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef KeyframeStyleRuleCSSStyleDeclaration_h |
| 6 #define KeyframeStyleRuleCSSStyleDeclaration_h |
| 7 |
| 8 #include "core/css/PropertySetCSSStyleDeclaration.h" |
| 9 |
| 10 namespace blink { |
| 11 |
| 12 class KeyframeStyleRuleCSSStyleDeclaration final : public StyleRuleCSSStyleDecla
ration { |
| 13 public: |
| 14 static PassRefPtrWillBeRawPtr<KeyframeStyleRuleCSSStyleDeclaration> create(M
utableStylePropertySet& propertySet, CSSKeyframeRule* parentRule) |
| 15 { |
| 16 return adoptRefWillBeNoop(new KeyframeStyleRuleCSSStyleDeclaration(prope
rtySet, parentRule)); |
| 17 } |
| 18 |
| 19 private: |
| 20 KeyframeStyleRuleCSSStyleDeclaration(MutableStylePropertySet&, CSSKeyframeRu
le*); |
| 21 |
| 22 virtual void didMutate(MutationType) override; |
| 23 }; |
| 24 |
| 25 } // namespace blink |
| 26 |
| 27 #endif |
OLD | NEW |