aboutsummaryrefslogtreecommitdiff
path: root/webrtc/common_audio/sparse_fir_filter.h
diff options
context:
space:
mode:
authorhenrikg <henrikg@webrtc.org>2015-09-16 05:37:44 -0700
committerCommit bot <commit-bot@chromium.org>2015-09-16 12:37:52 +0000
commit3c089d751ede283e21e186885eaf705c3257ccd2 (patch)
tree3ee93b396d9059325a36878e5108f02432f34c04 /webrtc/common_audio/sparse_fir_filter.h
parentafb6b5e3e0a2d7040e183d09e40071074017c0ad (diff)
downloadwebrtc-3c089d751ede283e21e186885eaf705c3257ccd2.tar.gz
Add RTC_ prefix to contructormagic macros.
We must remove dependency on Chromium, i.e. we can't use Chromium's base/logging.h. That means we need to define these macros in WebRTC also when doing Chromium builds. And this causes redefinition. * DISALLOW_ASSIGN -> RTC_DISALLOW_ASSIGN * DISALLOW_COPY_AND_ASSIGN -> RTC_DISALLOW_COPY_AND_ASSIGN * DISALLOW_IMPLICIT_CONSTRUCTORS -> RTC_DISALLOW_IMPLICIT_CONSTRUCTORS Related CL: https://codereview.webrtc.org/1335923002/ BUG=chromium:468375 NOTRY=true Review URL: https://codereview.webrtc.org/1345433002 Cr-Commit-Position: refs/heads/master@{#9953}
Diffstat (limited to 'webrtc/common_audio/sparse_fir_filter.h')
-rw-r--r--webrtc/common_audio/sparse_fir_filter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/webrtc/common_audio/sparse_fir_filter.h b/webrtc/common_audio/sparse_fir_filter.h
index 9322afcdcc..2ba5cf4600 100644
--- a/webrtc/common_audio/sparse_fir_filter.h
+++ b/webrtc/common_audio/sparse_fir_filter.h
@@ -44,7 +44,7 @@ class SparseFIRFilter final {
const std::vector<float> nonzero_coeffs_;
std::vector<float> state_;
- DISALLOW_COPY_AND_ASSIGN(SparseFIRFilter);
+ RTC_DISALLOW_COPY_AND_ASSIGN(SparseFIRFilter);
};
} // namespace webrtc