Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1388)

Unified Diff: remoting/codec/video_encoder.h

Issue 1864213002: Convert //remoting to use std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Mac IWYU Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/codec/video_decoder_vpx_unittest.cc ('k') | remoting/codec/video_encoder_helper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/codec/video_encoder.h
diff --git a/remoting/codec/video_encoder.h b/remoting/codec/video_encoder.h
index 9da447c1336f17394dd54b6d5273f81c4656f48a..662951843873be8b68f8fc7d8febb9439fef1ed7 100644
--- a/remoting/codec/video_encoder.h
+++ b/remoting/codec/video_encoder.h
@@ -5,7 +5,7 @@
#ifndef REMOTING_CODEC_VIDEO_ENCODER_H_
#define REMOTING_CODEC_VIDEO_ENCODER_H_
-#include "base/memory/scoped_ptr.h"
+#include <memory>
namespace webrtc {
class DesktopFrame;
@@ -29,7 +29,8 @@ class VideoEncoder {
// then the encoder may return a packet (e.g. to top-off previously-encoded
// portions of the frame to higher quality) or return nullptr to indicate that
// there is no work to do.
- virtual scoped_ptr<VideoPacket> Encode(const webrtc::DesktopFrame& frame) = 0;
+ virtual std::unique_ptr<VideoPacket> Encode(
+ const webrtc::DesktopFrame& frame) = 0;
};
} // namespace remoting
« no previous file with comments | « remoting/codec/video_decoder_vpx_unittest.cc ('k') | remoting/codec/video_encoder_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698