diff options
author | haraken <haraken@chromium.org> | 2016-01-11 02:19:16 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-01-11 10:21:33 +0000 |
commit | e7fc592f19c6ffde1296ff01482013a0dd68a977 (patch) | |
tree | 28e287dec98b03930acd720c728c11ac4cd47581 /third_party/WebKit/Source/platform/audio/ReverbInputBuffer.cpp | |
parent | 7fdccee949335fe31c65e24e47c4bd6da69b99d2 (diff) | |
download | chromium_src-e7fc592f19c6ffde1296ff01482013a0dd68a977.zip chromium_src-e7fc592f19c6ffde1296ff01482013a0dd68a977.tar.gz chromium_src-e7fc592f19c6ffde1296ff01482013a0dd68a977.tar.bz2 |
Remove the WEB_AUDIO compile time flag
Web audio already has a runtime feature flag,
so the WEB_AUDIO compile-time flag wouldn't be needed.
Per the comment in https://codereview.chromium.org/604753003/#msg8,
it looks safe to remove the compile-time flag.
Web audio is the last feature that uses a compile-time flag.
Once we remove WEB_AUDIO, we can remove a lot of code to support
compile-time features from the IDL comipler.
BUG=417628
TBR=jochen@chromium.org
Review URL: https://codereview.chromium.org/1557363002
Cr-Commit-Position: refs/heads/master@{#368554}
Diffstat (limited to 'third_party/WebKit/Source/platform/audio/ReverbInputBuffer.cpp')
-rw-r--r-- | third_party/WebKit/Source/platform/audio/ReverbInputBuffer.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/third_party/WebKit/Source/platform/audio/ReverbInputBuffer.cpp b/third_party/WebKit/Source/platform/audio/ReverbInputBuffer.cpp index 1a2804d..4ba25bcc 100644 --- a/third_party/WebKit/Source/platform/audio/ReverbInputBuffer.cpp +++ b/third_party/WebKit/Source/platform/audio/ReverbInputBuffer.cpp @@ -28,8 +28,6 @@ #include "platform/audio/ReverbInputBuffer.h" -#if ENABLE(WEB_AUDIO) - namespace blink { ReverbInputBuffer::ReverbInputBuffer(size_t length) @@ -84,4 +82,3 @@ void ReverbInputBuffer::reset() } // namespace blink -#endif // ENABLE(WEB_AUDIO) |