| Index: third_party/WebKit/Source/platform/audio/DenormalDisabler.h
|
| diff --git a/third_party/WebKit/Source/platform/audio/DenormalDisabler.h b/third_party/WebKit/Source/platform/audio/DenormalDisabler.h
|
| index 4cddba8c67805133bd3cc51570e77b45c7d89f00..ceb14dea747a7fab4ff86e5b5a25926d4ef52d74 100644
|
| --- a/third_party/WebKit/Source/platform/audio/DenormalDisabler.h
|
| +++ b/third_party/WebKit/Source/platform/audio/DenormalDisabler.h
|
| @@ -138,7 +138,7 @@ class DenormalDisabler {
|
|
|
| // Assume the worst case that other architectures and compilers
|
| // need to flush denormals to zero manually.
|
| - static inline float flushDenormalFloatToZero(float f) {
|
| + static inline float FlushDenormalFloatToZero(float f) {
|
| return (fabs(f) < FLT_MIN) ? 0.0f : f;
|
| }
|
| };
|
|
|