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

Unified Diff: Source/core/css/CSSInitialValue.h

Issue 1303173007: Oilpan: Unship Oilpan from CSSValues Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/css/CSSInheritedValue.h ('k') | Source/core/css/CSSLineBoxContainValue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSInitialValue.h
diff --git a/Source/core/css/CSSInitialValue.h b/Source/core/css/CSSInitialValue.h
index c493c3b055794aa4fb5db9078078611d3dc18777..db8844f09934a52ddeb739f851da9caced9e41a5 100644
--- a/Source/core/css/CSSInitialValue.h
+++ b/Source/core/css/CSSInitialValue.h
@@ -28,13 +28,13 @@ namespace blink {
class CSSInitialValue : public CSSValue {
public:
- static PassRefPtrWillBeRawPtr<CSSInitialValue> createExplicit()
+ static PassRefPtr<CSSInitialValue> createExplicit()
{
- return adoptRefWillBeNoop(new CSSInitialValue(/* implicit */ false));
+ return adoptRef(new CSSInitialValue(/* implicit */ false));
}
- static PassRefPtrWillBeRawPtr<CSSInitialValue> createImplicit()
+ static PassRefPtr<CSSInitialValue> createImplicit()
{
- return adoptRefWillBeNoop(new CSSInitialValue(/* implicit */ true));
+ return adoptRef(new CSSInitialValue(/* implicit */ true));
}
String customCSSText() const;
@@ -43,8 +43,6 @@ public:
bool equals(const CSSInitialValue&) const { return true; }
- DEFINE_INLINE_TRACE_AFTER_DISPATCH() { CSSValue::traceAfterDispatch(visitor); }
-
private:
explicit CSSInitialValue(bool implicit)
: CSSValue(InitialClass)
« no previous file with comments | « Source/core/css/CSSInheritedValue.h ('k') | Source/core/css/CSSLineBoxContainValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698