diff options
author | ajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-25 20:11:22 +0000 |
---|---|---|
committer | ajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-25 20:11:22 +0000 |
commit | fc9bc05353e26d7d169402aeb4d4f248403cb420 (patch) | |
tree | 3170b0aa9c0601703e4ac09e5ae71b9be98a4868 /remoting/host/host_config.h | |
parent | 3fa29ca5ebc800d5eb187ace26dedd996485a39a (diff) | |
download | chromium_src-fc9bc05353e26d7d169402aeb4d4f248403cb420.zip chromium_src-fc9bc05353e26d7d169402aeb4d4f248403cb420.tar.gz chromium_src-fc9bc05353e26d7d169402aeb4d4f248403cb420.tar.bz2 |
Wire in OAuth2 support into non-sandboxed connections in libjingle.
BUG=none
TEST=can connect w/o ClientLogin token.
Review URL: http://codereview.chromium.org/7008003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86685 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/host_config.h')
-rw-r--r-- | remoting/host/host_config.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/remoting/host/host_config.h b/remoting/host/host_config.h index d9c1cd4..00490b0 100644 --- a/remoting/host/host_config.h +++ b/remoting/host/host_config.h @@ -19,8 +19,10 @@ namespace remoting { extern const char kHostEnabledConfigPath[]; // Login used to authenticate in XMPP network. extern const char kXmppLoginConfigPath[]; -// Auth token used to authenticate in XMPP network. +// Auth token used to authenticate to XMPP network. extern const char kXmppAuthTokenConfigPath[]; +// Auth service used to authenticate to XMPP network. +extern const char kXmppAuthServiceConfigPath[]; // Unique identifier of the host used to register the host in directory. // Normally a random UUID. extern const char kHostIdConfigPath[]; |