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

Unified Diff: content/test/ppapi_unittest.h

Issue 1874903002: Convert //content from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix indent Created 4 years, 8 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: content/test/ppapi_unittest.h
diff --git a/content/test/ppapi_unittest.h b/content/test/ppapi_unittest.h
index 4cd183de8a8812d51bf254d22c7e6ea3e8128305..4085f7322e4950d95aef1b0d7d4e570586db1daa 100644
--- a/content/test/ppapi_unittest.h
+++ b/content/test/ppapi_unittest.h
@@ -5,9 +5,10 @@
#ifndef CONTENT_TEST_PPAPI_UNITTEST_H_
#define CONTENT_TEST_PPAPI_UNITTEST_H_
+#include <memory>
+
#include "base/macros.h"
#include "base/memory/ref_counted.h"
-#include "base/memory/scoped_ptr.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace base {
@@ -45,7 +46,7 @@ class PpapiUnittest : public testing::Test {
scoped_refptr<PluginModule> module_;
scoped_refptr<PepperPluginInstanceImpl> instance_;
- scoped_ptr<base::MessageLoop> message_loop_;
+ std::unique_ptr<base::MessageLoop> message_loop_;
DISALLOW_COPY_AND_ASSIGN(PpapiUnittest);
};
« no previous file with comments | « content/test/net/url_request_abort_on_end_job.cc ('k') | content/test/render_thread_impl_browser_test_ipc_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698