Remove final from rtc::Buffer.

With it removed, you can now use it with scoped_refptr by wrapping it in
an rtc::RefCountedObject<rtc::Buffer>.

BUG=

Review URL: https://codereview.webrtc.org/1414053003

Cr-Commit-Position: refs/heads/master@{#10386}
This commit is contained in:
noahric
2015-10-23 06:01:10 -07:00
committed by Commit bot
parent 1e737c6f2c
commit 27dfe201a5

View File

@ -44,7 +44,7 @@ struct ByteType {
// Basic buffer class, can be grown and shrunk dynamically.
// Unlike std::string/vector, does not initialize data when expanding capacity.
class Buffer final {
class Buffer {
public:
Buffer(); // An empty buffer.
Buffer(const Buffer& buf); // Copy size and contents of an existing buffer.