diff options
author | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-17 23:43:00 +0000 |
---|---|---|
committer | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-17 23:43:00 +0000 |
commit | 7620735be42ebc236d2da42d64f22dc5dedd01f9 (patch) | |
tree | baf0e6311b84830cd76df764e73e9aacfeb65e3e /remoting/host/host_config.cc | |
parent | f90ab58c11abf783c850c632f9b0467f968e4045 (diff) | |
download | chromium_src-7620735be42ebc236d2da42d64f22dc5dedd01f9.zip chromium_src-7620735be42ebc236d2da42d64f22dc5dedd01f9.tar.gz chromium_src-7620735be42ebc236d2da42d64f22dc5dedd01f9.tar.bz2 |
JSON based host config storage implemented. Python script for host registration.
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/2804007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50166 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/host_config.cc')
-rw-r--r-- | remoting/host/host_config.cc | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/remoting/host/host_config.cc b/remoting/host/host_config.cc new file mode 100644 index 0000000..1ce16dc --- /dev/null +++ b/remoting/host/host_config.cc @@ -0,0 +1,15 @@ +// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "remoting/host/host_config.h" + +namespace remoting { + +const std::wstring kXmppLoginConfigPath(L"xmpp_login"); +const std::wstring kXmppAuthTokenConfigPath(L"xmpp_auth_token"); +const std::wstring kHostIdConfigPath(L"host_id"); +const std::wstring kHostNameConfigPath(L"host_name"); +const std::wstring kPublicKeyConfigPath(L"public_key"); + +} // namespace remoting |