Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(157)

Side by Side Diff: third_party/WebKit/Source/core/css/StyleRuleKeyframe.h

Issue 1858753003: Remove RawPtr from core/css (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 StyleRuleKeyframe_h 5 #ifndef StyleRuleKeyframe_h
6 #define StyleRuleKeyframe_h 6 #define StyleRuleKeyframe_h
7 7
8 #include "core/css/StyleRule.h" 8 #include "core/css/StyleRule.h"
9 9
10 namespace blink { 10 namespace blink {
11 11
12 class MutableStylePropertySet; 12 class MutableStylePropertySet;
13 class StylePropertySet; 13 class StylePropertySet;
14 14
15 class StyleRuleKeyframe final : public StyleRuleBase { 15 class StyleRuleKeyframe final : public StyleRuleBase {
16 public: 16 public:
17 static RawPtr<StyleRuleKeyframe> create(PassOwnPtr<Vector<double>> keys, Raw Ptr<StylePropertySet> properties) 17 static StyleRuleKeyframe* create(PassOwnPtr<Vector<double>> keys, StylePrope rtySet* properties)
18 { 18 {
19 return new StyleRuleKeyframe(keys, properties); 19 return new StyleRuleKeyframe(keys, properties);
20 } 20 }
21 21
22 // Exposed to JavaScript. 22 // Exposed to JavaScript.
23 String keyText() const; 23 String keyText() const;
24 bool setKeyText(const String&); 24 bool setKeyText(const String&);
25 25
26 // Used by StyleResolver. 26 // Used by StyleResolver.
27 const Vector<double>& keys() const; 27 const Vector<double>& keys() const;
28 28
29 const StylePropertySet& properties() const { return *m_properties; } 29 const StylePropertySet& properties() const { return *m_properties; }
30 MutableStylePropertySet& mutableProperties(); 30 MutableStylePropertySet& mutableProperties();
31 31
32 String cssText() const; 32 String cssText() const;
33 33
34 DECLARE_TRACE_AFTER_DISPATCH(); 34 DECLARE_TRACE_AFTER_DISPATCH();
35 35
36 private: 36 private:
37 StyleRuleKeyframe(PassOwnPtr<Vector<double>>, RawPtr<StylePropertySet>); 37 StyleRuleKeyframe(PassOwnPtr<Vector<double>>, StylePropertySet*);
38 38
39 Member<StylePropertySet> m_properties; 39 Member<StylePropertySet> m_properties;
40 Vector<double> m_keys; 40 Vector<double> m_keys;
41 }; 41 };
42 42
43 DEFINE_STYLE_RULE_TYPE_CASTS(Keyframe); 43 DEFINE_STYLE_RULE_TYPE_CASTS(Keyframe);
44 44
45 } // namespace blink 45 } // namespace blink
46 46
47 #endif // StyleRuleKeyframe_h 47 #endif // StyleRuleKeyframe_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/StyleRuleImport.cpp ('k') | third_party/WebKit/Source/core/css/StyleRuleKeyframe.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698