From a7140456fb3874cc2e6cfc113a9ac81143b19bfc Mon Sep 17 00:00:00 2001 From: "jamiewalch@chromium.org" Date: Mon, 9 May 2011 23:11:45 +0000 Subject: 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 --- remoting/client/client_config.cc | 15 +++++++++++++++ remoting/client/client_config.h | 3 +++ remoting/remoting.gyp | 1 + 3 files changed, 19 insertions(+) create mode 100644 remoting/client/client_config.cc (limited to 'remoting') 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', -- cgit v1.1