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

Unified Diff: Source/core/css/CSSGridLineNamesValue.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/CSSGradientValue.cpp ('k') | Source/core/css/CSSGridTemplateAreasValue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSGridLineNamesValue.h
diff --git a/Source/core/css/CSSGridLineNamesValue.h b/Source/core/css/CSSGridLineNamesValue.h
index 4a09a444e20384213475825af305f484bbdcc343..6190c9f5f3ee54da3fd3292119bd6799115fdf10 100644
--- a/Source/core/css/CSSGridLineNamesValue.h
+++ b/Source/core/css/CSSGridLineNamesValue.h
@@ -38,15 +38,13 @@ namespace blink {
class CSSGridLineNamesValue : public CSSValueList {
public:
- static PassRefPtrWillBeRawPtr<CSSGridLineNamesValue> create()
+ static PassRefPtr<CSSGridLineNamesValue> create()
{
- return adoptRefWillBeNoop(new CSSGridLineNamesValue());
+ return adoptRef(new CSSGridLineNamesValue());
}
String customCSSText() const;
- DEFINE_INLINE_TRACE_AFTER_DISPATCH() { CSSValueList::traceAfterDispatch(visitor); }
-
private:
CSSGridLineNamesValue();
};
« no previous file with comments | « Source/core/css/CSSGradientValue.cpp ('k') | Source/core/css/CSSGridTemplateAreasValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698