| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * * Redistributions of source code must retain the above copyright | 7 * * Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * * Redistributions in binary form must reproduce the above copyright | 9 * * Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #include "config.h" | 26 #include "config.h" |
| 27 #include "modules/speech/SpeechRecognitionController.h" | 27 #include "modules/speech/SpeechRecognitionController.h" |
| 28 | 28 |
| 29 namespace blink { | 29 namespace blink { |
| 30 | 30 |
| 31 void SpeechRecognitionController::provideTo(LocalFrame& frame, PassOwnPtr<Speech
RecognitionClient> client) |
| 32 { |
| 33 SpeechRecognitionController* controller = new SpeechRecognitionController(cl
ient); |
| 34 WillBeHeapSupplement<LocalFrame>::provideTo(frame, SpeechRecognitionControll
er::supplementName(), adoptPtrWillBeNoop(controller)); |
| 35 } |
| 36 |
| 37 SpeechRecognitionController* SpeechRecognitionController::from(LocalFrame& frame
) |
| 38 { |
| 39 return static_cast<SpeechRecognitionController*>(WillBeHeapSupplement<LocalF
rame>::from(frame, supplementName())); |
| 40 } |
| 41 |
| 31 const char* SpeechRecognitionController::supplementName() | 42 const char* SpeechRecognitionController::supplementName() |
| 32 { | 43 { |
| 33 return "SpeechRecognitionController"; | 44 return "SpeechRecognitionController"; |
| 34 } | 45 } |
| 35 | 46 |
| 36 SpeechRecognitionController::SpeechRecognitionController(PassOwnPtr<SpeechRecogn
itionClient> client) | 47 SpeechRecognitionController::SpeechRecognitionController(PassOwnPtr<SpeechRecogn
itionClient> client) |
| 37 : m_client(client) | 48 : m_client(client) |
| 38 { | 49 { |
| 39 } | 50 } |
| 40 | 51 |
| 41 SpeechRecognitionController::~SpeechRecognitionController() | 52 SpeechRecognitionController::~SpeechRecognitionController() |
| 42 { | 53 { |
| 43 // FIXME: Call m_client->pageDestroyed(); once we have implemented a client. | 54 // FIXME: Call m_client->pageDestroyed(); once we have implemented a client. |
| 44 } | 55 } |
| 45 | 56 |
| 46 PassOwnPtrWillBeRawPtr<SpeechRecognitionController> SpeechRecognitionController:
:create(PassOwnPtr<SpeechRecognitionClient> client) | 57 void SpeechRecognitionController::trace(Visitor* visitor) |
| 47 { | 58 { |
| 48 return adoptPtrWillBeNoop(new SpeechRecognitionController(client)); | 59 WillBeHeapSupplement<LocalFrame>::trace(visitor); |
| 49 } | |
| 50 | |
| 51 void provideSpeechRecognitionTo(Page& page, PassOwnPtr<SpeechRecognitionClient>
client) | |
| 52 { | |
| 53 SpeechRecognitionController::provideTo(page, SpeechRecognitionController::su
pplementName(), SpeechRecognitionController::create(client)); | |
| 54 } | 60 } |
| 55 | 61 |
| 56 } // namespace blink | 62 } // namespace blink |
| OLD | NEW |