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

Unified Diff: components/arc/standalone/arc_standalone_bridge_runner.h

Issue 1921973002: Convert //components/[a-e]* from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . 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
« no previous file with comments | « components/arc/net/arc_net_host_impl.cc ('k') | components/arc/standalone/service_helper_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/arc/standalone/arc_standalone_bridge_runner.h
diff --git a/components/arc/standalone/arc_standalone_bridge_runner.h b/components/arc/standalone/arc_standalone_bridge_runner.h
index 3a88e4b6c397334c2525ebd25fc43ce34c00de6e..9edd5f66bdb5fe4fc2faadf4e4b92316ae0c0b53 100644
--- a/components/arc/standalone/arc_standalone_bridge_runner.h
+++ b/components/arc/standalone/arc_standalone_bridge_runner.h
@@ -5,8 +5,9 @@
#ifndef COMPONENTS_ARC_ARC_STANDALONE_BRIDGE_RUNNER_H_
#define COMPONENTS_ARC_ARC_STANDALONE_BRIDGE_RUNNER_H_
+#include <memory>
+
#include "base/macros.h"
-#include "base/memory/scoped_ptr.h"
#include "base/message_loop/message_loop.h"
#include "base/run_loop.h"
#include "base/threading/thread_checker.h"
@@ -28,7 +29,7 @@ class ArcStandaloneBridgeRunner {
private:
base::MessageLoopForIO message_loop_;
- scoped_ptr<base::RunLoop> run_loop_;
+ std::unique_ptr<base::RunLoop> run_loop_;
base::ThreadChecker thread_checker_;
int exit_code_;
« no previous file with comments | « components/arc/net/arc_net_host_impl.cc ('k') | components/arc/standalone/service_helper_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698