summaryrefslogtreecommitdiffstats
path: root/remoting/client
diff options
context:
space:
mode:
Diffstat (limited to 'remoting/client')
-rw-r--r--remoting/client/client_config.cc15
-rw-r--r--remoting/client/client_config.h3
2 files changed, 18 insertions, 0 deletions
diff --git a/remoting/client/client_config.cc b/remoting/client/client_config.cc
new file mode 100644
index 0000000..aed88df
--- /dev/null
+++ b/remoting/client/client_config.cc
@@ -0,0 +1,15 @@
+// Copyright (c) 2011 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/client/client_config.h"
+
+namespace remoting {
+
+ClientConfig::ClientConfig() {
+}
+
+ClientConfig::~ClientConfig() {
+}
+
+}
diff --git a/remoting/client/client_config.h b/remoting/client/client_config.h
index 50c9f3f..d438667 100644
--- a/remoting/client/client_config.h
+++ b/remoting/client/client_config.h
@@ -12,6 +12,9 @@
namespace remoting {
struct ClientConfig {
+ ClientConfig();
+ ~ClientConfig();
+
std::string host_jid;
std::string username;
std::string auth_token;