Index: Source/modules/mediastream/SourceInfo.cpp |
diff --git a/Source/modules/mediastream/SourceInfo.cpp b/Source/modules/mediastream/SourceInfo.cpp |
index be8dfc2561a19fb076c8ae6180ce5c45f5e49265..8a6ee1762806cab100539306a7eb204d18a2bb9d 100644 |
--- a/Source/modules/mediastream/SourceInfo.cpp |
+++ b/Source/modules/mediastream/SourceInfo.cpp |
@@ -30,10 +30,10 @@ |
namespace WebCore { |
-PassRefPtr<SourceInfo> SourceInfo::create(const blink::WebSourceInfo& webSourceInfo) |
+PassRefPtrWillBeRawPtr<SourceInfo> SourceInfo::create(const blink::WebSourceInfo& webSourceInfo) |
{ |
ASSERT(!webSourceInfo.isNull()); |
- return adoptRef(new SourceInfo(webSourceInfo)); |
+ return adoptRefWillBeNoop(new SourceInfo(webSourceInfo)); |
} |
SourceInfo::SourceInfo(const blink::WebSourceInfo& webSourceInfo) |