summaryrefslogtreecommitdiffstats
path: root/remoting/host/win
diff options
context:
space:
mode:
authorthakis <thakis@chromium.org>2015-05-04 12:44:13 -0700
committerCommit bot <commit-bot@chromium.org>2015-05-04 19:44:50 +0000
commit4d27f0ccb127d62094311ceb9f264910a9d15bed (patch)
treee5b328ae9ca389a940ee9ab8f58e01136a5f3635 /remoting/host/win
parente3e4605ee5132f71e1a593b99626ce4d1460991a (diff)
downloadchromium_src-4d27f0ccb127d62094311ceb9f264910a9d15bed.zip
chromium_src-4d27f0ccb127d62094311ceb9f264910a9d15bed.tar.gz
chromium_src-4d27f0ccb127d62094311ceb9f264910a9d15bed.tar.bz2
win: Give RdpDesktopSession an explicit out-of-line destructor.
Fixes: ..\..\remoting/host/win/rdp_desktop_session.h(22,1) : warning(clang): [chromium-style] Complex class/struct needs an explicit out-of-line destructor. BUG=467287 Review URL: https://codereview.chromium.org/1126643002 Cr-Commit-Position: refs/heads/master@{#328169}
Diffstat (limited to 'remoting/host/win')
-rw-r--r--remoting/host/win/rdp_desktop_session.cc3
-rw-r--r--remoting/host/win/rdp_desktop_session.h1
2 files changed, 4 insertions, 0 deletions
diff --git a/remoting/host/win/rdp_desktop_session.cc b/remoting/host/win/rdp_desktop_session.cc
index e7c3c2b..788d06a 100644
--- a/remoting/host/win/rdp_desktop_session.cc
+++ b/remoting/host/win/rdp_desktop_session.cc
@@ -14,6 +14,9 @@ namespace remoting {
RdpDesktopSession::RdpDesktopSession() {
}
+RdpDesktopSession::~RdpDesktopSession() {
+}
+
STDMETHODIMP RdpDesktopSession::Connect(
long width,
long height,
diff --git a/remoting/host/win/rdp_desktop_session.h b/remoting/host/win/rdp_desktop_session.h
index 052d538..1f7159e 100644
--- a/remoting/host/win/rdp_desktop_session.h
+++ b/remoting/host/win/rdp_desktop_session.h
@@ -37,6 +37,7 @@ class __declspec(uuid(RDP_DESKTOP_SESSION_CLSID)) RdpDesktopSession
_ClassFactoryCreatorClass;
RdpDesktopSession();
+ ~RdpDesktopSession();
// IRdpDesktopSession implementation.
STDMETHOD(Connect)(long width,