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

Unified Diff: remoting/codec/audio_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/audio_encoder_opus_unittest.cc ('k') | remoting/codec/audio_encoder_verbatim.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/codec/audio_encoder_verbatim.h
diff --git a/remoting/codec/audio_encoder_verbatim.h b/remoting/codec/audio_encoder_verbatim.h
index f546befc549d0cb4d916f408338f317ba4bdd38a..e96242c29301024c451a65b94c259ed66f797ace 100644
--- a/remoting/codec/audio_encoder_verbatim.h
+++ b/remoting/codec/audio_encoder_verbatim.h
@@ -18,7 +18,8 @@ class AudioEncoderVerbatim : public AudioEncoder {
~AudioEncoderVerbatim() override;
// AudioEncoder implementation.
- scoped_ptr<AudioPacket> Encode(scoped_ptr<AudioPacket> packet) override;
+ std::unique_ptr<AudioPacket> Encode(
+ std::unique_ptr<AudioPacket> packet) override;
int GetBitrate() override;
private:
« no previous file with comments | « remoting/codec/audio_encoder_opus_unittest.cc ('k') | remoting/codec/audio_encoder_verbatim.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698