diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-29 11:57:18 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-29 11:57:18 +0000 |
commit | fcb8e0216c21719582f25726cf4f6766b1902f64 (patch) | |
tree | 1d14bc15659799f45740df07dc918e961601159d /content/browser/speech/audio_buffer.cc | |
parent | 8b81e050226de9b2f7614557e12c13fc3f3690eb (diff) | |
download | chromium_src-fcb8e0216c21719582f25726cf4f6766b1902f64.zip chromium_src-fcb8e0216c21719582f25726cf4f6766b1902f64.tar.gz chromium_src-fcb8e0216c21719582f25726cf4f6766b1902f64.tar.bz2 |
content/browser: Move speech code into content namespace.
TBR=jam@chromium.org
Review URL: https://codereview.chromium.org/11347004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@164625 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/speech/audio_buffer.cc')
-rw-r--r-- | content/browser/speech/audio_buffer.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/content/browser/speech/audio_buffer.cc b/content/browser/speech/audio_buffer.cc index ef49004..3e7d2a4 100644 --- a/content/browser/speech/audio_buffer.cc +++ b/content/browser/speech/audio_buffer.cc @@ -2,11 +2,12 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +#include "content/browser/speech/audio_buffer.h" + #include "base/logging.h" #include "base/stl_util.h" -#include "content/browser/speech/audio_buffer.h" -namespace speech { +namespace content { AudioChunk::AudioChunk(int bytes_per_sample) : bytes_per_sample_(bytes_per_sample) { @@ -87,4 +88,4 @@ bool AudioBuffer::IsEmpty() const { return chunks_.empty(); } -} // namespace speech +} // namespace content |