summaryrefslogtreecommitdiffstats
path: root/remoting/client
diff options
context:
space:
mode:
authorjamiewalch@chromium.org <jamiewalch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-05-09 23:11:45 +0000
committerjamiewalch@chromium.org <jamiewalch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-05-09 23:11:45 +0000
commita7140456fb3874cc2e6cfc113a9ac81143b19bfc (patch)
tree079122c9922855a357fb7bb884193c54208eb561 /remoting/client
parent6bd4502696dacf2b6109eb9285427bea76cabe1c (diff)
downloadchromium_src-a7140456fb3874cc2e6cfc113a9ac81143b19bfc.zip
chromium_src-a7140456fb3874cc2e6cfc113a9ac81143b19bfc.tar.gz
chromium_src-a7140456fb3874cc2e6cfc113a9ac81143b19bfc.tar.bz2
Added out-of-line ctor and dtor to fix clang builds.
BUG=None TEST=Clang bots stay green. Review URL: http://codereview.chromium.org/6987002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@84711 0039d316-1c4b-4281-b951-d872f2087c98
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;