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

Unified Diff: third_party/WebKit/Source/platform/audio/Panner.cpp

Issue 2272683003: Remove redundant definition of Spatializer abstract class (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Detach StereoPanner from Panner base class (plus rebasing) Created 4 years, 4 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/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
-

Powered by Google App Engine
This is Rietveld 408576698