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

Unified Diff: remoting/client/jni/chromoting_jni_runtime.h

Issue 1864213002: Convert //remoting to use std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Mac IWYU 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 | « remoting/client/jni/chromoting_jni_instance.cc ('k') | remoting/client/jni/jni_frame_consumer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/jni/chromoting_jni_runtime.h
diff --git a/remoting/client/jni/chromoting_jni_runtime.h b/remoting/client/jni/chromoting_jni_runtime.h
index 8dedfcbdc441ea494043393f7b14f75ea8227b65..bb5a216c4c535fa867e31a73e68345106be67ee0 100644
--- a/remoting/client/jni/chromoting_jni_runtime.h
+++ b/remoting/client/jni/chromoting_jni_runtime.h
@@ -129,11 +129,11 @@ class ChromotingJniRuntime {
// Chromium code's connection to the app message loop. Once created the
// MessageLoop will live for the life of the program.
- scoped_ptr<base::MessageLoopForUI> ui_loop_;
+ std::unique_ptr<base::MessageLoopForUI> ui_loop_;
// Contains threads.
//
- scoped_ptr<ChromotingClientRuntime> runtime_;
+ std::unique_ptr<ChromotingClientRuntime> runtime_;
// Contains all connection-specific state.
scoped_refptr<ChromotingJniInstance> session_;
« no previous file with comments | « remoting/client/jni/chromoting_jni_instance.cc ('k') | remoting/client/jni/jni_frame_consumer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698