| Index: webrtc/media/base/videoframe.h
 | 
| diff --git a/webrtc/media/base/videoframe.h b/webrtc/media/base/videoframe.h
 | 
| index 4026c26b3b136ab26229ab884c249e4d38a15aba..950f88848f6cbfb0191199dcea433a87d7fb37d6 100644
 | 
| --- a/webrtc/media/base/videoframe.h
 | 
| +++ b/webrtc/media/base/videoframe.h
 | 
| @@ -29,17 +29,6 @@ class VideoFrame {
 | 
|    virtual int width() const = 0;
 | 
|    virtual int height() const = 0;
 | 
|  
 | 
| -  // Deprecated methods, for backwards compatibility.
 | 
| -  // TODO(nisse): Delete when usage in Chrome and other applications
 | 
| -  // have been replaced by width() and height().
 | 
| -  virtual size_t GetWidth() const final { return width(); }
 | 
| -  virtual size_t GetHeight() const final { return height(); }
 | 
| -
 | 
| -  // Returns the handle of the underlying video frame. This is used when the
 | 
| -  // frame is backed by a texture. The object should be destroyed when it is no
 | 
| -  // longer in use, so the underlying resource can be freed.
 | 
| -  virtual void* GetNativeHandle() const = 0;
 | 
| -
 | 
|    // Returns the underlying video frame buffer. This function is ok to call
 | 
|    // multiple times, but the returned object will refer to the same memory.
 | 
|    virtual const rtc::scoped_refptr<webrtc::VideoFrameBuffer>&
 | 
| 
 |