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

Unified Diff: remoting/codec/video_encoder_verbatim.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_encoder_helper_unittest.cc ('k') | remoting/codec/video_encoder_verbatim.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/codec/video_encoder_verbatim.h
diff --git a/remoting/codec/video_encoder_verbatim.h b/remoting/codec/video_encoder_verbatim.h
index 0e76b4300d9518acc3dcfa622457e9c91a447344..e4e070191e30b8417094bffca39bb5d7dfacddc4 100644
--- a/remoting/codec/video_encoder_verbatim.h
+++ b/remoting/codec/video_encoder_verbatim.h
@@ -19,7 +19,8 @@ class VideoEncoderVerbatim : public VideoEncoder {
~VideoEncoderVerbatim() override;
// VideoEncoder interface.
- scoped_ptr<VideoPacket> Encode(const webrtc::DesktopFrame& frame) override;
+ std::unique_ptr<VideoPacket> Encode(
+ const webrtc::DesktopFrame& frame) override;
private:
VideoEncoderHelper helper_;
« no previous file with comments | « remoting/codec/video_encoder_helper_unittest.cc ('k') | remoting/codec/video_encoder_verbatim.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698