Chromium Code Reviews

Unified Diff: Source/modules/speech/SpeechRecognition.cpp

Issue 139803012: Move speech module over to Oilpan. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Switch to using WillBeHeapVector transition type Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « Source/modules/speech/SpeechRecognition.h ('k') | Source/modules/speech/SpeechRecognition.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/speech/SpeechRecognition.cpp
diff --git a/Source/modules/speech/SpeechRecognition.cpp b/Source/modules/speech/SpeechRecognition.cpp
index 364332ee89098792393ccd585a9bcdf32895dd6b..03eef7dbe8ca04d3baaaf3e38af408ec0efbc4ba 100644
--- a/Source/modules/speech/SpeechRecognition.cpp
+++ b/Source/modules/speech/SpeechRecognition.cpp
@@ -37,9 +37,11 @@
namespace WebCore {
-PassRefPtr<SpeechRecognition> SpeechRecognition::create(ExecutionContext* context)
+DEFINE_GC_INFO(SpeechRecognition);
+
+PassRefPtrWillBeRawPtr<SpeechRecognition> SpeechRecognition::create(ExecutionContext* context)
{
- RefPtr<SpeechRecognition> speechRecognition(adoptRef(new SpeechRecognition(context)));
+ RefPtrWillBeRawPtr<SpeechRecognition> speechRecognition(adoptRefWillBeNoop(new SpeechRecognition(context)));
speechRecognition->suspendIfNeeded();
return speechRecognition.release();
}
@@ -113,7 +115,9 @@ void SpeechRecognition::didReceiveResults(const Vector<RefPtr<SpeechRecognitionR
for (size_t i = 0; i < newFinalResults.size(); ++i)
m_finalResults.append(newFinalResults[i]);
- Vector<RefPtr<SpeechRecognitionResult> > results = m_finalResults;
+ Vector<RefPtr<SpeechRecognitionResult> > results(m_finalResults.size());
sof 2014/02/12 10:17:09 This is suboptimal, but it will require changing w
+ for (size_t i = 0; i < m_finalResults.size(); ++i)
+ results[i] = m_finalResults[i];
for (size_t i = 0; i < currentInterimResults.size(); ++i)
results.append(currentInterimResults[i]);
@@ -189,4 +193,9 @@ SpeechRecognition::~SpeechRecognition()
{
}
+void SpeechRecognition::trace(Visitor* visitor)
+{
+ visitor->trace(m_grammars);
+}
+
} // namespace WebCore
« no previous file with comments | « Source/modules/speech/SpeechRecognition.h ('k') | Source/modules/speech/SpeechRecognition.idl » ('j') | no next file with comments »

Powered by Google App Engine