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

Side by Side Diff: Source/modules/speech/SpeechRecognitionController.cpp

Issue 899853002: Merge 188868 "Revert of Make SpeechRecognitionController per fra..." (Closed) Base URL: svn://svn.chromium.org/blink/branches/chromium/2272/
Patch Set: Created 5 years, 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/modules/speech/SpeechRecognitionController.h ('k') | Source/web/WebLocalFrameImpl.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
42 const char* SpeechRecognitionController::supplementName() 31 const char* SpeechRecognitionController::supplementName()
43 { 32 {
44 return "SpeechRecognitionController"; 33 return "SpeechRecognitionController";
45 } 34 }
46 35
47 SpeechRecognitionController::SpeechRecognitionController(PassOwnPtr<SpeechRecogn itionClient> client) 36 SpeechRecognitionController::SpeechRecognitionController(PassOwnPtr<SpeechRecogn itionClient> client)
48 : m_client(client) 37 : m_client(client)
49 { 38 {
50 } 39 }
51 40
52 SpeechRecognitionController::~SpeechRecognitionController() 41 SpeechRecognitionController::~SpeechRecognitionController()
53 { 42 {
54 // FIXME: Call m_client->pageDestroyed(); once we have implemented a client. 43 // FIXME: Call m_client->pageDestroyed(); once we have implemented a client.
55 } 44 }
56 45
57 void SpeechRecognitionController::trace(Visitor* visitor) 46 PassOwnPtrWillBeRawPtr<SpeechRecognitionController> SpeechRecognitionController: :create(PassOwnPtr<SpeechRecognitionClient> client)
58 { 47 {
59 WillBeHeapSupplement<LocalFrame>::trace(visitor); 48 return adoptPtrWillBeNoop(new SpeechRecognitionController(client));
49 }
50
51 void provideSpeechRecognitionTo(Page& page, PassOwnPtr<SpeechRecognitionClient> client)
52 {
53 SpeechRecognitionController::provideTo(page, SpeechRecognitionController::su pplementName(), SpeechRecognitionController::create(client));
60 } 54 }
61 55
62 } // namespace blink 56 } // namespace blink
OLDNEW
« no previous file with comments | « Source/modules/speech/SpeechRecognitionController.h ('k') | Source/web/WebLocalFrameImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698