summaryrefslogtreecommitdiffstats
path: root/remoting
diff options
context:
space:
mode:
Diffstat (limited to 'remoting')
-rw-r--r--remoting/client/client_config.cc15
-rw-r--r--remoting/client/client_config.h3
-rw-r--r--remoting/remoting.gyp1
3 files changed, 19 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;
diff --git a/remoting/remoting.gyp b/remoting/remoting.gyp
index 25aed80..ab867eb 100644
--- a/remoting/remoting.gyp
+++ b/remoting/remoting.gyp
@@ -331,6 +331,7 @@
'client/chromoting_stats.h',
'client/chromoting_view.cc',
'client/chromoting_view.h',
+ 'client/client_config.cc',
'client/client_config.h',
'client/client_context.cc',
'client/client_context.h',