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

Unified Diff: webrtc/call/call_unittest.cc

Issue 1789903003: Replace scoped_ptr with unique_ptr in webrtc/call/ (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 9 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
Index: webrtc/call/call_unittest.cc
diff --git a/webrtc/call/call_unittest.cc b/webrtc/call/call_unittest.cc
index 75c8238a5bd94bc3726e7f61c276e6963a1a64c1..0da91a9bf739ee0fbe0174286d9b84e278b1c411 100644
--- a/webrtc/call/call_unittest.cc
+++ b/webrtc/call/call_unittest.cc
@@ -9,6 +9,7 @@
*/
#include <list>
+#include <memory>
#include "testing/gtest/include/gtest/gtest.h"
@@ -31,7 +32,7 @@ struct CallHelper {
private:
testing::NiceMock<webrtc::test::MockVoiceEngine> voice_engine_;
- rtc::scoped_ptr<webrtc::Call> call_;
+ std::unique_ptr<webrtc::Call> call_;
};
} // namespace

Powered by Google App Engine
This is Rietveld 408576698