diff options
author | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-05 21:52:40 +0000 |
---|---|---|
committer | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-05 21:52:40 +0000 |
commit | 4388ee404a5df94fc6bf517638989e8db22fd4fa (patch) | |
tree | 61b67390903837153d4719af05c6add19ae16197 /remoting | |
parent | a957982f6f2ffb3c463c6aeaf6ea7303e21dd80e (diff) | |
download | chromium_src-4388ee404a5df94fc6bf517638989e8db22fd4fa.zip chromium_src-4388ee404a5df94fc6bf517638989e8db22fd4fa.tar.gz chromium_src-4388ee404a5df94fc6bf517638989e8db22fd4fa.tar.bz2 |
Fix clang build
Adding virtual destructor for ChromotingStats.
BUG=None
TEST=None
TBR=ajwong
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80535 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting')
-rw-r--r-- | remoting/client/chromoting_stats.cc | 3 | ||||
-rw-r--r-- | remoting/client/chromoting_stats.h | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/remoting/client/chromoting_stats.cc b/remoting/client/chromoting_stats.cc index a9b10e1..2fba7c6 100644 --- a/remoting/client/chromoting_stats.cc +++ b/remoting/client/chromoting_stats.cc @@ -25,4 +25,7 @@ ChromotingStats::ChromotingStats() video_paint_ms_(kLatencyWindow) { } +ChromotingStats::~ChromotingStats() { +} + } // namespace remoting diff --git a/remoting/client/chromoting_stats.h b/remoting/client/chromoting_stats.h index e9f89ff..174279b 100644 --- a/remoting/client/chromoting_stats.h +++ b/remoting/client/chromoting_stats.h @@ -16,6 +16,7 @@ namespace remoting { class ChromotingStats { public: ChromotingStats(); + virtual ~ChromotingStats(); RateCounter* video_bandwidth() { return &video_bandwidth_; } RunningAverage* video_capture_ms() { return &video_capture_ms_; } |