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

Unified Diff: third_party/WebKit/Source/modules/webaudio/DelayDSPKernel.cpp

Issue 1773813007: blink: Rename modules/ method to prefix with get when they collide. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clash-modules: rebase-fixes Created 4 years, 9 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: third_party/WebKit/Source/modules/webaudio/DelayDSPKernel.cpp
diff --git a/third_party/WebKit/Source/modules/webaudio/DelayDSPKernel.cpp b/third_party/WebKit/Source/modules/webaudio/DelayDSPKernel.cpp
index 001a5f7396a1686da29c747343010d12b210adea..784621b26933c228f1787a3a347c2c1c314a4774 100644
--- a/third_party/WebKit/Source/modules/webaudio/DelayDSPKernel.cpp
+++ b/third_party/WebKit/Source/modules/webaudio/DelayDSPKernel.cpp
@@ -53,17 +53,17 @@ DelayDSPKernel::DelayDSPKernel(DelayProcessor* processor)
bool DelayDSPKernel::hasSampleAccurateValues()
{
- return delayProcessor()->delayTime().hasSampleAccurateValues();
+ return getDelayProcessor()->delayTime().hasSampleAccurateValues();
}
void DelayDSPKernel::calculateSampleAccurateValues(float* delayTimes, size_t framesToProcess)
{
- delayProcessor()->delayTime().calculateSampleAccurateValues(delayTimes, framesToProcess);
+ getDelayProcessor()->delayTime().calculateSampleAccurateValues(delayTimes, framesToProcess);
}
double DelayDSPKernel::delayTime(float)
{
- return delayProcessor()->delayTime().finalValue();
+ return getDelayProcessor()->delayTime().finalValue();
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698