Index: webrtc/modules/audio_processing/transient/wpd_tree.h |
diff --git a/webrtc/modules/audio_processing/transient/wpd_tree.h b/webrtc/modules/audio_processing/transient/wpd_tree.h |
index 7f0fc794e0662dd247dd298b8668f7737e7eb203..a64055e7dee087b60057fa297838cd20c02bf3ad 100644 |
--- a/webrtc/modules/audio_processing/transient/wpd_tree.h |
+++ b/webrtc/modules/audio_processing/transient/wpd_tree.h |
@@ -11,7 +11,8 @@ |
#ifndef WEBRTC_MODULES_AUDIO_PROCESSING_TRANSIENT_WPD_TREE_H_ |
#define WEBRTC_MODULES_AUDIO_PROCESSING_TRANSIENT_WPD_TREE_H_ |
-#include "webrtc/base/scoped_ptr.h" |
+#include <memory> |
+ |
#include "webrtc/modules/audio_processing/transient/wpd_node.h" |
namespace webrtc { |
@@ -83,7 +84,7 @@ class WPDTree { |
size_t data_length_; |
int levels_; |
int num_nodes_; |
- rtc::scoped_ptr<rtc::scoped_ptr<WPDNode>[]> nodes_; |
+ std::unique_ptr<std::unique_ptr<WPDNode>[]> nodes_; |
}; |
} // namespace webrtc |