| Index: webrtc/system_wrappers/include/scoped_vector.h
|
| diff --git a/webrtc/system_wrappers/include/scoped_vector.h b/webrtc/system_wrappers/include/scoped_vector.h
|
| index 15c3380c8c4a7df2f2309eb9db6a7afb0b733d21..ba836d8106f11ba29761bc3f708e08dc4f78b445 100644
|
| --- a/webrtc/system_wrappers/include/scoped_vector.h
|
| +++ b/webrtc/system_wrappers/include/scoped_vector.h
|
| @@ -16,7 +16,6 @@
|
| #include <vector>
|
|
|
| #include "webrtc/base/checks.h"
|
| -#include "webrtc/base/deprecation.h"
|
| #include "webrtc/system_wrappers/include/stl_util.h"
|
|
|
| namespace webrtc {
|
| @@ -56,13 +55,6 @@ class ScopedVector {
|
| ScopedVector(const ScopedVector& other) = delete;
|
| ScopedVector& operator=(const ScopedVector& other) = delete;
|
|
|
| - // Get an rvalue reference. (sv.Pass() does the same thing as std::move(sv).)
|
| - // Deprecated; remove in March 2016 (bug 5373).
|
| - RTC_DEPRECATED ScopedVector&& Pass() { return DEPRECATED_Pass(); }
|
| - ScopedVector&& DEPRECATED_Pass() {
|
| - return std::move(*this);
|
| - }
|
| -
|
| reference operator[](size_t index) { return v_[index]; }
|
| const_reference operator[](size_t index) const { return v_[index]; }
|
|
|
|
|