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

Unified Diff: third_party/WebKit/Source/core/css/CSSCustomPropertyDeclaration.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/CSSCustomPropertyDeclaration.h
diff --git a/third_party/WebKit/Source/core/css/CSSCustomPropertyDeclaration.h b/third_party/WebKit/Source/core/css/CSSCustomPropertyDeclaration.h
index 22dc8cd09bc0a62939710c7c0be5f9e123273405..392ecf6c0ff89c7a24438a4ccaf90a04a76d6b53 100644
--- a/third_party/WebKit/Source/core/css/CSSCustomPropertyDeclaration.h
+++ b/third_party/WebKit/Source/core/css/CSSCustomPropertyDeclaration.h
@@ -14,14 +14,14 @@ namespace blink {
class CSSCustomPropertyDeclaration : public CSSValue {
public:
- static PassRefPtrWillBeRawPtr<CSSCustomPropertyDeclaration> create(const AtomicString& name, PassRefPtr<CSSVariableData> value)
+ static RawPtr<CSSCustomPropertyDeclaration> create(const AtomicString& name, PassRefPtr<CSSVariableData> value)
{
- return adoptRefWillBeNoop(new CSSCustomPropertyDeclaration(name, value));
+ return new CSSCustomPropertyDeclaration(name, value);
}
- static PassRefPtrWillBeRawPtr<CSSCustomPropertyDeclaration> create(const AtomicString& name, CSSValueID id)
+ static RawPtr<CSSCustomPropertyDeclaration> create(const AtomicString& name, CSSValueID id)
{
- return adoptRefWillBeNoop(new CSSCustomPropertyDeclaration(name, id));
+ return new CSSCustomPropertyDeclaration(name, id);
}
const AtomicString& name() const { return m_name; }
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSCustomIdentValue.h ('k') | third_party/WebKit/Source/core/css/CSSDefaultStyleSheets.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698