| Index: third_party/WebKit/Source/modules/webaudio/OscillatorNode.cpp
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/OscillatorNode.cpp b/third_party/WebKit/Source/modules/webaudio/OscillatorNode.cpp
|
| index 0dba6c099e002a337681fab852da53f04f810e9c..0fb5ef0fb3ae24fa0affaa7c886ff6249f57dfca 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/OscillatorNode.cpp
|
| +++ b/third_party/WebKit/Source/modules/webaudio/OscillatorNode.cpp
|
| @@ -85,7 +85,7 @@ String OscillatorHandler::GetType() const {
|
| case CUSTOM:
|
| return "custom";
|
| default:
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return "custom";
|
| }
|
| }
|
| @@ -128,7 +128,7 @@ bool OscillatorHandler::SetType(unsigned type) {
|
| default:
|
| // Return false for invalid types, including CUSTOM since
|
| // setPeriodicWave() method must be called explicitly.
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return false;
|
| }
|
|
|
|
|