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

Unified Diff: Source/core/css/CSSInheritedValue.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/CSSImageValue.cpp ('k') | Source/core/css/CSSInitialValue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSInheritedValue.h
diff --git a/Source/core/css/CSSInheritedValue.h b/Source/core/css/CSSInheritedValue.h
index 9bdc467f4d7341d8f515af91940378e00bd7a144..bcc0973b5b7050492fd7b43ae7368d7a0fba834a 100644
--- a/Source/core/css/CSSInheritedValue.h
+++ b/Source/core/css/CSSInheritedValue.h
@@ -28,17 +28,15 @@ namespace blink {
class CSSInheritedValue : public CSSValue {
public:
- static PassRefPtrWillBeRawPtr<CSSInheritedValue> create()
+ static PassRefPtr<CSSInheritedValue> create()
{
- return adoptRefWillBeNoop(new CSSInheritedValue);
+ return adoptRef(new CSSInheritedValue);
}
String customCSSText() const;
bool equals(const CSSInheritedValue&) const { return true; }
- DEFINE_INLINE_TRACE_AFTER_DISPATCH() { CSSValue::traceAfterDispatch(visitor); }
-
private:
CSSInheritedValue()
: CSSValue(InheritedClass)
« no previous file with comments | « Source/core/css/CSSImageValue.cpp ('k') | Source/core/css/CSSInitialValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698