blob: 1ce16dc6516bedf4ea65b169fc17b4309e170c34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
|