diff options
author | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-11 03:28:55 +0000 |
---|---|---|
committer | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-11 03:28:55 +0000 |
commit | ec641187306d367f79476dd913097f550af701a5 (patch) | |
tree | 5caf7f893b4c0b014ef6372be4759a2a5433d497 /remoting/host/chromoting_host.h | |
parent | b36fb9f6c87672ddae5ea017f6214d1e4253f346 (diff) | |
download | chromium_src-ec641187306d367f79476dd913097f550af701a5.zip chromium_src-ec641187306d367f79476dd913097f550af701a5.tar.gz chromium_src-ec641187306d367f79476dd913097f550af701a5.tar.bz2 |
Make ConnectionToClient and ClientSession not ref-counted.
Also made then NonThreadSafe.
BUG=96325
TEST=Chromoting works.
Review URL: http://codereview.chromium.org/8495035
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109574 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/chromoting_host.h')
-rw-r--r-- | remoting/host/chromoting_host.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remoting/host/chromoting_host.h b/remoting/host/chromoting_host.h index 08ad9b4..7d6f227 100644 --- a/remoting/host/chromoting_host.h +++ b/remoting/host/chromoting_host.h @@ -145,7 +145,7 @@ class ChromotingHost : public base::RefCountedThreadSafe<ChromotingHost>, friend class ChromotingHostTest; typedef std::vector<HostStatusObserver*> StatusObserverList; - typedef std::vector<scoped_refptr<ClientSession> > ClientList; + typedef std::vector<ClientSession*> ClientList; enum State { kInitial, |