Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / content / renderer / media / native_handle_impl.h
index 36c5dab..20a4f03 100644 (file)
@@ -15,11 +15,11 @@ class NativeHandleImpl : public webrtc::NativeHandle {
  public:
   // Wraps a video frame in the handle.
   explicit NativeHandleImpl(scoped_refptr<media::VideoFrame> frame);
-  virtual ~NativeHandleImpl();
+  ~NativeHandleImpl() override;
 
   // Retrieves the video frame in the handle. The frame is still ref-counted by
   // the handle. The ref count decreases when NativeHandleImpl is destroyed.
-  virtual void* GetHandle() OVERRIDE;
+  void* GetHandle() override;
 
  private:
   scoped_refptr<media::VideoFrame> frame_;