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

Unified Diff: android_webview/native/aw_media_url_interceptor_unittest.cc

Issue 1852513003: Convert //android_webview to use std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: git is hard 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
« no previous file with comments | « android_webview/native/aw_dev_tools_server.cc ('k') | android_webview/native/aw_picture.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/native/aw_media_url_interceptor_unittest.cc
diff --git a/android_webview/native/aw_media_url_interceptor_unittest.cc b/android_webview/native/aw_media_url_interceptor_unittest.cc
index 0f0ee0dd4bffb0e55b0c5318e9c5e6db580a43ac..b43dab987b44f2416d79439bfbc56a4f2d302884 100644
--- a/android_webview/native/aw_media_url_interceptor_unittest.cc
+++ b/android_webview/native/aw_media_url_interceptor_unittest.cc
@@ -2,10 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include <string>
-
#include "android_webview/native/aw_media_url_interceptor.h"
-#include "base/memory/scoped_ptr.h"
+
+#include <memory>
+#include <string>
#include "testing/gtest/include/gtest/gtest.h"
@@ -28,7 +28,7 @@ class AwMediaUrlInterceptorTest : public Test {
int fd_;
int64_t offset_;
int64_t size_;
- scoped_ptr<AwMediaUrlInterceptor> url_interceptor_;
+ std::unique_ptr<AwMediaUrlInterceptor> url_interceptor_;
};
} // namespace
« no previous file with comments | « android_webview/native/aw_dev_tools_server.cc ('k') | android_webview/native/aw_picture.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698