Fix build breakage in WrappedI420Buffer::native_handle()

Sorry... My cl broke the build since I had not properly rebased and tested. https://webrtc-codereview.appspot.com/43999004/
TBR=mflodman@webrtc.org

BUG=1128

Review URL: https://webrtc-codereview.appspot.com/45019004

Cr-Commit-Position: refs/heads/master@{#8933}
This commit is contained in:
Per 2015-04-07 13:03:30 +02:00
parent 75db861258
commit 3211934ebf
2 changed files with 2 additions and 2 deletions

View File

@ -135,7 +135,7 @@ class WrappedI420Buffer : public webrtc::VideoFrameBuffer {
uint8_t* data(PlaneType type) override; uint8_t* data(PlaneType type) override;
int stride(PlaneType type) const override; int stride(PlaneType type) const override;
rtc::scoped_refptr<NativeHandle> native_handle() const override; void* native_handle() const override;
private: private:
friend class rtc::RefCountedObject<WrappedI420Buffer>; friend class rtc::RefCountedObject<WrappedI420Buffer>;

View File

@ -230,7 +230,7 @@ int WrappedI420Buffer::stride(PlaneType type) const {
} }
} }
rtc::scoped_refptr<NativeHandle> WrappedI420Buffer::native_handle() const { void* WrappedI420Buffer::native_handle() const {
return nullptr; return nullptr;
} }