diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-18 20:21:31 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-18 20:21:31 +0000 |
commit | b104b50ddb1d70d95ff9ace7a6fb30ec3b1aeb17 (patch) | |
tree | 0d35c3f624aec7c6de8824fab2b9521bfff1dbff /remoting/host/differ.cc | |
parent | d13509f32546e26332733ac6153d359fbd566eaa (diff) | |
download | chromium_src-b104b50ddb1d70d95ff9ace7a6fb30ec3b1aeb17.zip chromium_src-b104b50ddb1d70d95ff9ace7a6fb30ec3b1aeb17.tar.gz chromium_src-b104b50ddb1d70d95ff9ace7a6fb30ec3b1aeb17.tar.bz2 |
FBTF: Monster ctor patch after changing heuristics in clang plugin.
(Only 916k this time off Debug Linux .a files)
BUG=none
TEST=compiles
Review URL: http://codereview.chromium.org/3814013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62967 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/differ.cc')
-rw-r--r-- | remoting/host/differ.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/remoting/host/differ.cc b/remoting/host/differ.cc index 3409e0f..c7d28b0 100644 --- a/remoting/host/differ.cc +++ b/remoting/host/differ.cc @@ -23,6 +23,8 @@ Differ::Differ(int width, int height, int bpp, int stride) { diff_info_.reset(new uint8[diff_info_size_]); } +Differ::~Differ() {} + void Differ::CalcDirtyRects(const void* prev_buffer, const void* curr_buffer, InvalidRects* rects) { if (!rects) { |