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

Unified Diff: Source/modules/mediastream/SourceInfo.cpp

Issue 173363002: Move mediastream module to oilpan transition types (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Added Finalized Created 6 years, 10 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: Source/modules/mediastream/SourceInfo.cpp
diff --git a/Source/modules/mediastream/SourceInfo.cpp b/Source/modules/mediastream/SourceInfo.cpp
index be8dfc2561a19fb076c8ae6180ce5c45f5e49265..2c7215a60984f2f80510f66e0c350625e7eb25a8 100644
--- a/Source/modules/mediastream/SourceInfo.cpp
+++ b/Source/modules/mediastream/SourceInfo.cpp
@@ -30,10 +30,12 @@
namespace WebCore {
-PassRefPtr<SourceInfo> SourceInfo::create(const blink::WebSourceInfo& webSourceInfo)
+DEFINE_GC_INFO(SourceInfo);
+
+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)

Powered by Google App Engine
This is Rietveld 408576698