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

Unified Diff: webrtc/base/array_view.h

Issue 2089183002: Don't recreate the speech encoder if we don't have to (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 6 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: webrtc/base/array_view.h
diff --git a/webrtc/base/array_view.h b/webrtc/base/array_view.h
index a7ca66cc95deb5a0c503bf3db6c2d53a9c34f941..868009631f83e69d22bb25a989866126ef144978 100644
--- a/webrtc/base/array_view.h
+++ b/webrtc/base/array_view.h
@@ -56,6 +56,7 @@ namespace rtc {
// Contains17(arr); // C array
// Contains17(arr); // std::vector
// Contains17(rtc::ArrayView<int>(arr, size)); // pointer + size
+// Contains17(nullptr); // nullptr -> empty ArrayView
// ...
//
// One important point is that ArrayView<T> and ArrayView<const T> are
@@ -73,6 +74,7 @@ class ArrayView final {
public:
// Construct an empty ArrayView.
ArrayView() : ArrayView(static_cast<T*>(nullptr), 0) {}
+ ArrayView(std::nullptr_t) : ArrayView() {}
// Construct an ArrayView for a (pointer,size) pair.
template <typename U>
« no previous file with comments | « no previous file | webrtc/modules/audio_coding/acm2/codec_manager.h » ('j') | webrtc/modules/audio_coding/acm2/codec_manager.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698