diff options
author | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-24 00:55:06 +0000 |
---|---|---|
committer | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-24 00:55:06 +0000 |
commit | 9c30ce228b9ea019df12465df3693cc7d1ad83b3 (patch) | |
tree | 3acae36ae2ebf65adb7beaac4e4071234ce67d13 /remoting/host/host_config.cc | |
parent | 8582cf00b1b8c720ae5b128f29e105d008897e14 (diff) | |
download | chromium_src-9c30ce228b9ea019df12465df3693cc7d1ad83b3.zip chromium_src-9c30ce228b9ea019df12465df3693cc7d1ad83b3.tar.gz chromium_src-9c30ce228b9ea019df12465df3693cc7d1ad83b3.tar.bz2 |
Remoting daemon process to support unofficial client ID
Allow the use of unofficial client for the daemon process even
if it is an official build. Which client ID to be used is chosen
by the webapp.
BUG=123693
TEST=Run a dev build webapp with an official daemon
Review URL: http://codereview.chromium.org/10116040
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133582 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/host_config.cc')
-rw-r--r-- | remoting/host/host_config.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/remoting/host/host_config.cc b/remoting/host/host_config.cc index 96053e6..869995f 100644 --- a/remoting/host/host_config.cc +++ b/remoting/host/host_config.cc @@ -10,6 +10,8 @@ const char kHostEnabledConfigPath[] = "enabled"; const char kXmppLoginConfigPath[] = "xmpp_login"; const char kXmppAuthTokenConfigPath[] = "xmpp_auth_token"; const char kOAuthRefreshTokenConfigPath[] = "oauth_refresh_token"; +const char kOAuthUseOfficialClientIdConfigPath[] = + "oauth_use_official_client_id"; const char kXmppAuthServiceConfigPath[] = "xmpp_auth_service"; const char kHostIdConfigPath[] = "host_id"; const char kHostNameConfigPath[] = "host_name"; |