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

Unified Diff: remoting/host/client_session.h

Issue 569593002: Maintaining the proper order of initialization WeakPtrFactory in "src/remoting" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review comments Created 6 years, 3 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 | « no previous file | remoting/host/client_session.cc » ('j') | remoting/host/win/host_service.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/client_session.h
diff --git a/remoting/host/client_session.h b/remoting/host/client_session.h
index f9fdd3bd5c25de4e63bc9839a8b1d2cfe2ba76cf..6b4d0f7abc99bf791ce0285095b5755548f0563c 100644
--- a/remoting/host/client_session.h
+++ b/remoting/host/client_session.h
@@ -173,10 +173,6 @@ class ClientSession
std::string client_jid_;
- // Used to disable callbacks to |this| once DisconnectSession() has been
- // called.
- base::WeakPtrFactory<ClientSessionControl> control_factory_;
-
// Used to create a DesktopEnvironment instance for this session.
DesktopEnvironmentFactory* desktop_environment_factory_;
@@ -263,6 +259,10 @@ class ClientSession
bool lossless_video_encode_;
bool lossless_video_color_;
+ // Used to disable callbacks to |this| once DisconnectSession() has been
+ // called.
+ base::WeakPtrFactory<ClientSessionControl> weak_factory_;
+
DISALLOW_COPY_AND_ASSIGN(ClientSession);
};
« no previous file with comments | « no previous file | remoting/host/client_session.cc » ('j') | remoting/host/win/host_service.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698