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

Side by Side Diff: third_party/WebKit/Source/core/css/CSSReflectValue.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 /* 1 /*
2 * Copyright (C) 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2008 Apple 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 18 matching lines...) Expand all
29 #include "core/css/CSSValue.h" 29 #include "core/css/CSSValue.h"
30 #include "wtf/PassRefPtr.h" 30 #include "wtf/PassRefPtr.h"
31 #include "wtf/RefPtr.h" 31 #include "wtf/RefPtr.h"
32 32
33 namespace blink { 33 namespace blink {
34 34
35 class CSSPrimitiveValue; 35 class CSSPrimitiveValue;
36 36
37 class CSSReflectValue : public CSSValue { 37 class CSSReflectValue : public CSSValue {
38 public: 38 public:
39 static RawPtr<CSSReflectValue> create(RawPtr<CSSPrimitiveValue> direction, 39 static CSSReflectValue* create(CSSPrimitiveValue* direction,
40 RawPtr<CSSPrimitiveValue> offset, RawPtr<CSSValue> mask) 40 CSSPrimitiveValue* offset, CSSValue* mask)
41 { 41 {
42 return new CSSReflectValue(direction, offset, mask); 42 return new CSSReflectValue(direction, offset, mask);
43 } 43 }
44 44
45 CSSPrimitiveValue* direction() const { return m_direction.get(); } 45 CSSPrimitiveValue* direction() const { return m_direction.get(); }
46 CSSPrimitiveValue* offset() const { return m_offset.get(); } 46 CSSPrimitiveValue* offset() const { return m_offset.get(); }
47 CSSValue* mask() const { return m_mask.get(); } 47 CSSValue* mask() const { return m_mask.get(); }
48 48
49 String customCSSText() const; 49 String customCSSText() const;
50 50
51 bool equals(const CSSReflectValue&) const; 51 bool equals(const CSSReflectValue&) const;
52 52
53 DECLARE_TRACE_AFTER_DISPATCH(); 53 DECLARE_TRACE_AFTER_DISPATCH();
54 54
55 private: 55 private:
56 CSSReflectValue(RawPtr<CSSPrimitiveValue> direction, RawPtr<CSSPrimitiveValu e> offset, RawPtr<CSSValue> mask) 56 CSSReflectValue(CSSPrimitiveValue* direction, CSSPrimitiveValue* offset, CSS Value* mask)
57 : CSSValue(ReflectClass) 57 : CSSValue(ReflectClass)
58 , m_direction(direction) 58 , m_direction(direction)
59 , m_offset(offset) 59 , m_offset(offset)
60 , m_mask(mask) 60 , m_mask(mask)
61 { 61 {
62 } 62 }
63 63
64 Member<CSSPrimitiveValue> m_direction; 64 Member<CSSPrimitiveValue> m_direction;
65 Member<CSSPrimitiveValue> m_offset; 65 Member<CSSPrimitiveValue> m_offset;
66 Member<CSSValue> m_mask; 66 Member<CSSValue> m_mask;
67 }; 67 };
68 68
69 DEFINE_CSS_VALUE_TYPE_CASTS(CSSReflectValue, isReflectValue()); 69 DEFINE_CSS_VALUE_TYPE_CASTS(CSSReflectValue, isReflectValue());
70 70
71 } // namespace blink 71 } // namespace blink
72 72
73 #endif // CSSReflectValue_h 73 #endif // CSSReflectValue_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSQuadValue.h ('k') | third_party/WebKit/Source/core/css/CSSRuleList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698