Index: third_party/WebKit/Source/platform/audio/Panner.cpp |
diff --git a/third_party/WebKit/Source/platform/audio/Panner.cpp b/third_party/WebKit/Source/platform/audio/Panner.cpp |
index 196e07118e0d4d1f1b9e32da9b3d81408803560b..546f778fa97530b17e4ef036f26ded132bc6be6c 100644 |
--- a/third_party/WebKit/Source/platform/audio/Panner.cpp |
+++ b/third_party/WebKit/Source/platform/audio/Panner.cpp |
@@ -44,10 +44,9 @@ std::unique_ptr<Panner> Panner::create(PanningModel model, float sampleRate, HRT |
return wrapUnique(new HRTFPanner(sampleRate, databaseLoader)); |
default: |
- ASSERT_NOT_REACHED(); |
+ NOTREACHED(); |
Raymond Toy
2016/08/24 18:30:29
Does the presubmit complain about this? If not, pl
hongchan
2016/08/24 21:52:33
Oh, actually NOTREACHED is the DCHECK versions of
|
return nullptr; |
} |
} |
} // namespace blink |
- |