Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chrome/browser/chromeos/audio_mixer.h" | |
| 6 | |
| 7 namespace chromeos { | |
| 8 | |
| 9 AudioMixer::AudioMixer() { | |
|
Daniel Erat
2011/01/05 01:06:53
Any reason that these can't just go in the header?
davejcool
2011/01/05 01:42:16
I moved them into a .cc after Andrew's comment to:
| |
| 10 } | |
| 11 | |
| 12 AudioMixer::~AudioMixer() { | |
| 13 } | |
| 14 | |
| 15 } // namespace chromeos | |
| 16 | |
| OLD | NEW |