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

Unified Diff: Source/modules/webmidi/MIDIController.cpp

Issue 255983003: Oilpan: Move all supplements of Page, Document, and WorkerClients to the managed heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: using namespace WebCore Created 6 years, 8 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/webmidi/MIDIController.h ('k') | Source/platform/RefCountedSupplement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webmidi/MIDIController.cpp
diff --git a/Source/modules/webmidi/MIDIController.cpp b/Source/modules/webmidi/MIDIController.cpp
index 55cc3996ea63a69c1e082512a75064b7080a9a51..c25bd6999b5ef0b4033cda968fa5f95a12d18a30 100644
--- a/Source/modules/webmidi/MIDIController.cpp
+++ b/Source/modules/webmidi/MIDIController.cpp
@@ -51,9 +51,9 @@ MIDIController::~MIDIController()
{
}
-PassOwnPtr<MIDIController> MIDIController::create(PassOwnPtr<MIDIClient> client)
+PassOwnPtrWillBeRawPtr<MIDIController> MIDIController::create(PassOwnPtr<MIDIClient> client)
{
- return adoptPtr(new MIDIController(client));
+ return adoptPtrWillBeNoop(new MIDIController(client));
}
void MIDIController::requestSysexPermission(PassRefPtrWillBeRawPtr<MIDIAccess> access)
« no previous file with comments | « Source/modules/webmidi/MIDIController.h ('k') | Source/platform/RefCountedSupplement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698