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

Unified Diff: chrome/browser/chromeos/audio_mixer.cc

Issue 5859003: Add ALSA support to volume keys (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/chrome/browser/chromeos
Patch Set: more cleanup Created 9 years, 12 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
Index: chrome/browser/chromeos/audio_mixer.cc
diff --git a/chrome/browser/chromeos/audio_mixer.cc b/chrome/browser/chromeos/audio_mixer.cc
new file mode 100644
index 0000000000000000000000000000000000000000..55a37e0beac29f87e4d57c607fdae0b975fe9401
--- /dev/null
+++ b/chrome/browser/chromeos/audio_mixer.cc
@@ -0,0 +1,16 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/browser/chromeos/audio_mixer.h"
+
+namespace chromeos {
+
+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:
+}
+
+AudioMixer::~AudioMixer() {
+}
+
+} // namespace chromeos
+

Powered by Google App Engine
This is Rietveld 408576698