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

Unified Diff: webrtc/modules/audio_mixer/audio_source_with_mix_status.cc

Issue 2437863003: Delete unused class AudioSourceWithMixStatus. (Closed)
Patch Set: Created 4 years, 2 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 | « webrtc/modules/audio_mixer/audio_source_with_mix_status.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/audio_mixer/audio_source_with_mix_status.cc
diff --git a/webrtc/modules/audio_mixer/audio_source_with_mix_status.cc b/webrtc/modules/audio_mixer/audio_source_with_mix_status.cc
deleted file mode 100644
index db94887ad932d475854b9f38bbb485f558ed3eb1..0000000000000000000000000000000000000000
--- a/webrtc/modules/audio_mixer/audio_source_with_mix_status.cc
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
- * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
- *
- * Use of this source code is governed by a BSD-style license
- * that can be found in the LICENSE file in the root of the source
- * tree. An additional intellectual property rights grant can be found
- * in the file PATENTS. All contributing project authors may
- * be found in the AUTHORS file in the root of the source tree.
- */
-
-#include "webrtc/modules/audio_mixer/audio_source_with_mix_status.h"
-
-namespace webrtc {
-
-AudioSourceWithMixStatus::AudioSourceWithMixStatus(
- AudioMixer::Source* audio_source)
- : audio_source_(audio_source) {}
-
-AudioSourceWithMixStatus::~AudioSourceWithMixStatus() {}
-
-bool AudioSourceWithMixStatus::IsMixed() const {
- return is_mixed_;
-}
-
-bool AudioSourceWithMixStatus::WasMixed() const {
- // Was mixed is the same as is mixed depending on perspective. This function
- // is for the perspective of AudioMixerImpl.
- return IsMixed();
-}
-
-void AudioSourceWithMixStatus::SetIsMixed(const bool mixed) {
- is_mixed_ = mixed;
-}
-
-void AudioSourceWithMixStatus::ResetMixedStatus() {
- is_mixed_ = false;
-}
-
-AudioMixer::Source* AudioSourceWithMixStatus::audio_source() const {
- return audio_source_;
-}
-
-} // namespace webrtc
« no previous file with comments | « webrtc/modules/audio_mixer/audio_source_with_mix_status.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698