| Index: content/browser/speech/endpointer/energy_endpointer.h
|
| diff --git a/content/browser/speech/endpointer/energy_endpointer.h b/content/browser/speech/endpointer/energy_endpointer.h
|
| index 27837bb625e84320c3c70f746ee01446e6f72800..7b0b292aee79d951ab86d3e6e8670fee28ca0a5d 100644
|
| --- a/content/browser/speech/endpointer/energy_endpointer.h
|
| +++ b/content/browser/speech/endpointer/energy_endpointer.h
|
| @@ -39,10 +39,10 @@
|
|
|
| #include <stdint.h>
|
|
|
| +#include <memory>
|
| #include <vector>
|
|
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "content/browser/speech/endpointer/energy_endpointer_params.h"
|
| #include "content/common/content_export.h"
|
|
|
| @@ -125,7 +125,7 @@ class CONTENT_EXPORT EnergyEndpointer {
|
| float sample_rate_; // Sampling rate.
|
|
|
| // Ring buffers to hold the speech activity history.
|
| - scoped_ptr<HistoryRing> history_;
|
| + std::unique_ptr<HistoryRing> history_;
|
|
|
| // Configuration parameters.
|
| EnergyEndpointerParams params_;
|
|
|