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

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: Rebased Created 6 years, 7 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 | « Source/modules/mediastream/SourceInfo.h ('k') | Source/modules/mediastream/SourceInfo.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)
« no previous file with comments | « Source/modules/mediastream/SourceInfo.h ('k') | Source/modules/mediastream/SourceInfo.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698