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

Unified Diff: Source/platform/fonts/GlyphPageTreeNodeTest.cpp

Issue 1244363002: Oilpan: fix build after r199293. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/fonts/GlyphPageTreeNodeTest.cpp
diff --git a/Source/platform/fonts/GlyphPageTreeNodeTest.cpp b/Source/platform/fonts/GlyphPageTreeNodeTest.cpp
index 66a95481cc9bf6f81617b9e47fe8be807e960d79..40f57ec369d918a6e778f58a6b1cea0b9618d3fb 100644
--- a/Source/platform/fonts/GlyphPageTreeNodeTest.cpp
+++ b/Source/platform/fonts/GlyphPageTreeNodeTest.cpp
@@ -15,7 +15,7 @@ namespace {
class TestCustomFontData : public CustomFontData {
public:
- static PassRefPtr<TestCustomFontData> create() { return adoptRef(new TestCustomFontData()); }
+ static PassRefPtrWillBeRawPtr<TestCustomFontData> create() { return adoptRefWillBeNoop(new TestCustomFontData()); }
private:
TestCustomFontData() { }
bool isLoadingFallback() const override { return true; }
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698