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

Unified Diff: third_party/WebKit/Source/core/css/parser/CSSParser.cpp

Issue 2050123002: Remove OwnPtr from Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: First attempt to land. Created 4 years, 6 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/parser/CSSParser.cpp
diff --git a/third_party/WebKit/Source/core/css/parser/CSSParser.cpp b/third_party/WebKit/Source/core/css/parser/CSSParser.cpp
index a8061e5bdd66fe2c2145b7f4dc87d757fa5b7d4a..fd94660a99a184ccd4b3a9efd53d7d297c9c4dca 100644
--- a/third_party/WebKit/Source/core/css/parser/CSSParser.cpp
+++ b/third_party/WebKit/Source/core/css/parser/CSSParser.cpp
@@ -18,6 +18,7 @@
#include "core/css/parser/CSSTokenizer.h"
#include "core/css/parser/CSSVariableParser.h"
#include "core/layout/LayoutTheme.h"
+#include <memory>
namespace blink {
@@ -114,7 +115,7 @@ ImmutableStylePropertySet* CSSParser::parseInlineStyleDeclaration(const String&
return CSSParserImpl::parseInlineStyleDeclaration(styleString, element);
}
-PassOwnPtr<Vector<double>> CSSParser::parseKeyframeKeyList(const String& keyList)
+std::unique_ptr<Vector<double>> CSSParser::parseKeyframeKeyList(const String& keyList)
{
return CSSParserImpl::parseKeyframeKeyList(keyList);
}
« no previous file with comments | « third_party/WebKit/Source/core/css/parser/CSSParser.h ('k') | third_party/WebKit/Source/core/css/parser/CSSParserImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698