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

Unified Diff: third_party/WebKit/Source/core/css/CSSGridAutoRepeatValue.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
Index: third_party/WebKit/Source/core/css/CSSGridAutoRepeatValue.h
diff --git a/third_party/WebKit/Source/core/css/CSSGridAutoRepeatValue.h b/third_party/WebKit/Source/core/css/CSSGridAutoRepeatValue.h
index 1b69f93500b5df72c51ae7ab41f5be7d5f394974..f8074d79879f73f4b3820f6ab93f3d421f018efd 100644
--- a/third_party/WebKit/Source/core/css/CSSGridAutoRepeatValue.h
+++ b/third_party/WebKit/Source/core/css/CSSGridAutoRepeatValue.h
@@ -23,9 +23,9 @@ namespace blink {
// allows us to keep the parsing algorithm almost intact.
class CSSGridAutoRepeatValue : public CSSValueList {
public:
- static PassRefPtrWillBeRawPtr<CSSGridAutoRepeatValue> create(CSSValueID id)
+ static RawPtr<CSSGridAutoRepeatValue> create(CSSValueID id)
{
- return adoptRefWillBeNoop(new CSSGridAutoRepeatValue(id));
+ return new CSSGridAutoRepeatValue(id);
}
String customCSSText() const;
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSGradientValue.cpp ('k') | third_party/WebKit/Source/core/css/CSSGridLineNamesValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698