Skip to content

Commit

Permalink
Fix clang build
Browse files Browse the repository at this point in the history
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
  • Loading branch information
hclam@chromium.org committed Apr 5, 2011
1 parent a957982 commit 4388ee4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions remoting/client/chromoting_stats.cc
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,7 @@ ChromotingStats::ChromotingStats()
video_paint_ms_(kLatencyWindow) {
}

ChromotingStats::~ChromotingStats() {
}

} // namespace remoting
1 change: 1 addition & 0 deletions remoting/client/chromoting_stats.h
Original file line number Diff line number Diff line change
Expand Up @@ -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_; }
Expand Down

0 comments on commit 4388ee4

Please sign in to comment.