From fcb8e0216c21719582f25726cf4f6766b1902f64 Mon Sep 17 00:00:00 2001 From: "tfarina@chromium.org" Date: Mon, 29 Oct 2012 11:57:18 +0000 Subject: 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 --- content/browser/speech/audio_buffer.cc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'content/browser/speech/audio_buffer.cc') 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 -- cgit v1.1