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

Unified Diff: Source/modules/speech/SpeechRecognitionController.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/speech/SpeechRecognitionController.h ('k') | Source/modules/vibration/NavigatorVibration.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/speech/SpeechRecognitionController.cpp
diff --git a/Source/modules/speech/SpeechRecognitionController.cpp b/Source/modules/speech/SpeechRecognitionController.cpp
index 8abf2048b7d4c45806a09f5ebe1212319ecc75aa..189c8d536295b6b96c4816359b9fe8ba20b2e20a 100644
--- a/Source/modules/speech/SpeechRecognitionController.cpp
+++ b/Source/modules/speech/SpeechRecognitionController.cpp
@@ -43,9 +43,9 @@ SpeechRecognitionController::~SpeechRecognitionController()
// FIXME: Call m_client->pageDestroyed(); once we have implemented a client.
}
-PassOwnPtr<SpeechRecognitionController> SpeechRecognitionController::create(PassOwnPtr<SpeechRecognitionClient> client)
+PassOwnPtrWillBeRawPtr<SpeechRecognitionController> SpeechRecognitionController::create(PassOwnPtr<SpeechRecognitionClient> client)
{
- return adoptPtr(new SpeechRecognitionController(client));
+ return adoptPtrWillBeNoop(new SpeechRecognitionController(client));
}
void provideSpeechRecognitionTo(Page& page, PassOwnPtr<SpeechRecognitionClient> client)
« no previous file with comments | « Source/modules/speech/SpeechRecognitionController.h ('k') | Source/modules/vibration/NavigatorVibration.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698