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

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

Issue 323873007: Oilpan: Make LocalFrame PersistentHeapSupplementable and use transition types for its supplements. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: non-oilpan build Created 6 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: Source/modules/mediastream/UserMediaController.cpp
diff --git a/Source/modules/mediastream/UserMediaController.cpp b/Source/modules/mediastream/UserMediaController.cpp
index e79d7957c91af493f8ac207c5c429153f9b4fe95..0ddca86086dfff62d96b19958a9bfe52369f8966 100644
--- a/Source/modules/mediastream/UserMediaController.cpp
+++ b/Source/modules/mediastream/UserMediaController.cpp
@@ -37,13 +37,11 @@ UserMediaController::UserMediaController(UserMediaClient* client)
{
}
-UserMediaController::~UserMediaController()
-{
-}
+DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(UserMediaController)
-PassOwnPtr<UserMediaController> UserMediaController::create(UserMediaClient* client)
+PassOwnPtrWillBeRawPtr<UserMediaController> UserMediaController::create(UserMediaClient* client)
{
- return adoptPtr(new UserMediaController(client));
+ return adoptPtrWillBeNoop(new UserMediaController(client));
}
void provideUserMediaTo(LocalFrame& frame, UserMediaClient* client)
« no previous file with comments | « Source/modules/mediastream/UserMediaController.h ('k') | Source/modules/notifications/NotificationController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698