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

Unified Diff: android_webview/browser/net/input_stream_reader_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: base:::::: 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: android_webview/browser/net/input_stream_reader_unittest.cc
diff --git a/android_webview/browser/net/input_stream_reader_unittest.cc b/android_webview/browser/net/input_stream_reader_unittest.cc
index 7d6a52ee58878b8186f7056d72397092f51ea341..f0ea864bfdeea307b4ef7f5fe3586e4669e8665e 100644
--- a/android_webview/browser/net/input_stream_reader_unittest.cc
+++ b/android_webview/browser/net/input_stream_reader_unittest.cc
@@ -2,15 +2,16 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "android_webview/browser/input_stream.h"
#include "android_webview/browser/net/input_stream_reader.h"
+
+#include <memory>
boliu 2016/04/01 00:49:42 old scoped_ptr include is actually not needed, so
dcheng 2016/04/01 00:58:01 Done (this is all automated, and I'm not able to s
+
+#include "android_webview/browser/input_stream.h"
#include "base/android/scoped_java_ref.h"
#include "base/callback.h"
#include "base/memory/ref_counted.h"
-#include "base/memory/scoped_ptr.h"
#include "net/base/io_buffer.h"
#include "net/http/http_byte_range.h"
-
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"

Powered by Google App Engine
This is Rietveld 408576698