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

Unified Diff: media/audio/audio_input_writer.h

Issue 1911913002: Convert //media/audio from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . 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 | « media/audio/audio_input_device.cc ('k') | media/audio/audio_logging.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/audio/audio_input_writer.h
diff --git a/media/audio/audio_input_writer.h b/media/audio/audio_input_writer.h
index 938baf11b71f4be6c58535772306403931a23ea3..42ca0ba42d6e43c10445261355d6e4bc0f00d4f6 100644
--- a/media/audio/audio_input_writer.h
+++ b/media/audio/audio_input_writer.h
@@ -5,7 +5,7 @@
#ifndef MEDIA_AUDIO_AUDIO_INPUT_WRITER_H_
#define MEDIA_AUDIO_AUDIO_INPUT_WRITER_H_
-#include "base/memory/scoped_ptr.h"
+#include <memory>
namespace media {
@@ -18,7 +18,7 @@ class AudioInputWriter {
virtual ~AudioInputWriter() {}
// Write |data| to file.
- virtual void Write(scoped_ptr<AudioBus> data) = 0;
+ virtual void Write(std::unique_ptr<AudioBus> data) = 0;
};
} // namspace media
« no previous file with comments | « media/audio/audio_input_device.cc ('k') | media/audio/audio_logging.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698