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

Unified Diff: content/browser/speech/endpointer/endpointer_unittest.cc

Issue 9861019: Speech refactoring: Turned AudioChunk into a refcounted class (CL1.4) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed according to Hans review. Created 8 years, 9 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 | « content/browser/speech/audio_encoder.cc ('k') | content/browser/speech/google_one_shot_remote_engine.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/speech/endpointer/endpointer_unittest.cc
diff --git a/content/browser/speech/endpointer/endpointer_unittest.cc b/content/browser/speech/endpointer/endpointer_unittest.cc
index 37f23399e28a887a01ab33406d2e1e7f840dd693..bdf8cc4418c5708accc073e21d36df29b68f9754 100644
--- a/content/browser/speech/endpointer/endpointer_unittest.cc
+++ b/content/browser/speech/endpointer/endpointer_unittest.cc
@@ -117,8 +117,9 @@ class EndpointerFrameProcessor : public FrameProcessor {
: endpointer_(endpointer) {}
EpStatus ProcessFrame(int64 time, int16* samples, int frame_size) {
- AudioChunk frame(reinterpret_cast<uint8*>(samples), kFrameSize * 2, 2);
- endpointer_->ProcessAudio(frame, NULL);
+ scoped_refptr<AudioChunk> frame(
+ new AudioChunk(reinterpret_cast<uint8*>(samples), kFrameSize * 2, 2));
+ endpointer_->ProcessAudio(*frame, NULL);
int64 ep_time;
return endpointer_->Status(&ep_time);
}
« no previous file with comments | « content/browser/speech/audio_encoder.cc ('k') | content/browser/speech/google_one_shot_remote_engine.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698