Commit 43492459 authored by garykac@google.com's avatar garykac@google.com

Re-add (curiously) missing 'return' statement to differ_unittest.

BUG=none
TEST=unittests on Windows

Review URL: http://codereview.chromium.org/2772002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49349 0039d316-1c4b-4281-b951-d872f2087c98
parent afd20c02
...@@ -50,7 +50,7 @@ class DifferTest : public testing::Test { ...@@ -50,7 +50,7 @@ class DifferTest : public testing::Test {
// Offset from upper-left of buffer to upper-left of requested block. // Offset from upper-left of buffer to upper-left of requested block.
int block_offset = ((block_y * stride_) + (block_x * bytes_per_pixel_)) int block_offset = ((block_y * stride_) + (block_x * bytes_per_pixel_))
* kBlockSize; * kBlockSize;
differ_->DiffBlock(prev_.get() + block_offset, return differ_->DiffBlock(prev_.get() + block_offset,
curr_.get() + block_offset, curr_.get() + block_offset,
stride_); stride_);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment