diff options
author | danakj@chromium.org <danakj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-09 02:19:44 +0000 |
---|---|---|
committer | danakj@chromium.org <danakj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-09 02:19:44 +0000 |
commit | e56e4d8868fa7e63e1d91bae14e2934916bcbc60 (patch) | |
tree | 868e5f2be1b6bf21797b92ac6140c303731931f3 /cc/test/fake_content_layer_client.cc | |
parent | d79757e3da43f56698b0f3d1aeae71bf80896bd8 (diff) | |
download | chromium_src-e56e4d8868fa7e63e1d91bae14e2934916bcbc60.zip chromium_src-e56e4d8868fa7e63e1d91bae14e2934916bcbc60.tar.gz chromium_src-e56e4d8868fa7e63e1d91bae14e2934916bcbc60.tar.bz2 |
cc: Rename MockContentLayerClient to FakeContentLayerClient and move to cc/test/
This class is used as a fake, not a Mock. Move it out so it possible to use
this outside of layer_tree_host_unittest.
Covered by existing tests.
R=enne
TEST=cc_unittests
Review URL: https://chromiumcodereview.appspot.com/11312155
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@166842 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/test/fake_content_layer_client.cc')
-rw-r--r-- | cc/test/fake_content_layer_client.cc | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/cc/test/fake_content_layer_client.cc b/cc/test/fake_content_layer_client.cc new file mode 100644 index 0000000..69b4d96 --- /dev/null +++ b/cc/test/fake_content_layer_client.cc @@ -0,0 +1,24 @@ +// Copyright 2012 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "config.h" + +#include "cc/test/fake_content_layer_client.h" + +#include "ui/gfx/rect.h" + +namespace WebKitTests { + +FakeContentLayerClient::FakeContentLayerClient() + : m_paintAllOpaque(false) +{ +} + +void FakeContentLayerClient::paintContents(SkCanvas*, const gfx::Rect& rect, gfx::RectF& opaqueRect) +{ + if (m_paintAllOpaque) + opaqueRect = rect; +} + +} // namespace WebKitTests |