diff options
author | jamiewalch@chromium.org <jamiewalch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-26 02:39:13 +0000 |
---|---|---|
committer | jamiewalch@chromium.org <jamiewalch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-26 02:39:13 +0000 |
commit | 61b47626d3bcc5cbd13362ac41c8ae8e90c2dc9f (patch) | |
tree | a5eb7348a600f0feba8bba615dc4335cd1e26344 /remoting/host | |
parent | 4d36ff124cbec2b4cc57f61a60aa51736b8561f7 (diff) | |
download | chromium_src-61b47626d3bcc5cbd13362ac41c8ae8e90c2dc9f.zip chromium_src-61b47626d3bcc5cbd13362ac41c8ae8e90c2dc9f.tar.gz chromium_src-61b47626d3bcc5cbd13362ac41c8ae8e90c2dc9f.tar.bz2 |
Don't create a pairing registry.
Until the feature is complete, we should not be creating a pairing registry.
Without a pairing registry, the SPAKE2_PAIR authentication method will not
be offered, which is the behaviour we want for M29.
BUG=254176
Review URL: https://chromiumcodereview.appspot.com/17750004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@208600 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host')
-rw-r--r-- | remoting/host/remoting_me2me_host.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/remoting/host/remoting_me2me_host.cc b/remoting/host/remoting_me2me_host.cc index d684a86..25a4ef1 100644 --- a/remoting/host/remoting_me2me_host.cc +++ b/remoting/host/remoting_me2me_host.cc @@ -477,11 +477,9 @@ void HostProcess::CreateAuthenticatorFactory() { return; } - // TODO(jamiewalch): Add a pairing registry here once all the code + // TODO(jamiewalch): Create a pairing registry here once all the code // is committed. - scoped_refptr<remoting::protocol::PairingRegistry> pairing_registry( - new remoting::protocol::PairingRegistry( - CreatePairingRegistryDelegate(NULL))); + scoped_refptr<remoting::protocol::PairingRegistry> pairing_registry = NULL; scoped_ptr<protocol::AuthenticatorFactory> factory; |