diff options
author | vollick@google.com <vollick@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-12 13:54:00 +0000 |
---|---|---|
committer | vollick@google.com <vollick@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-12 13:54:00 +0000 |
commit | 89639aaaaf45f50d111dee07f10f5ba530e55320 (patch) | |
tree | 5c57105515043e5e467b5f4514c5d47144f2d3cd /ui/compositor | |
parent | a78a18216a702fcddc7daea08cca1296a3c57d41 (diff) | |
download | chromium_src-89639aaaaf45f50d111dee07f10f5ba530e55320.zip chromium_src-89639aaaaf45f50d111dee07f10f5ba530e55320.tar.gz chromium_src-89639aaaaf45f50d111dee07f10f5ba530e55320.tar.bz2 |
Add missing initializers to TestLayerAnimationDelegate
There were missing initializers for brightness_ and grayscale_ making valgrind unhappy.
BUG=148475
TBR=sky@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10913208
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156289 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/compositor')
-rw-r--r-- | ui/compositor/test/test_layer_animation_delegate.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/compositor/test/test_layer_animation_delegate.cc b/ui/compositor/test/test_layer_animation_delegate.cc index 7427571..bb5cdc5 100644 --- a/ui/compositor/test/test_layer_animation_delegate.cc +++ b/ui/compositor/test/test_layer_animation_delegate.cc @@ -8,7 +8,9 @@ namespace ui { TestLayerAnimationDelegate::TestLayerAnimationDelegate() : opacity_(1.0f), - visibility_(true) { + visibility_(true), + brightness_(0.0f), + grayscale_(0.0f) { } TestLayerAnimationDelegate::TestLayerAnimationDelegate( |