summaryrefslogtreecommitdiffstats
path: root/cc/scrollbar_layer_unittest.cc
diff options
context:
space:
mode:
authorenne@chromium.org <enne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-19 21:22:42 +0000
committerenne@chromium.org <enne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-19 21:22:42 +0000
commitc753e25a8b4366c44134a8c21b9ed3392bf48608 (patch)
treef378c8a762caccf60856a1670ae33dfd638b9453 /cc/scrollbar_layer_unittest.cc
parent503160f80568f024fa712e280bb1a4e1e6ca1ec3 (diff)
downloadchromium_src-c753e25a8b4366c44134a8c21b9ed3392bf48608.zip
chromium_src-c753e25a8b4366c44134a8c21b9ed3392bf48608.tar.gz
chromium_src-c753e25a8b4366c44134a8c21b9ed3392bf48608.tar.bz2
Revert "cc: Rename cc classes and members to match filenames"
This reverts commit 184fac5add06d5f4670fa6be4a4d3b39232d51bb. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@163059 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/scrollbar_layer_unittest.cc')
-rw-r--r--cc/scrollbar_layer_unittest.cc46
1 files changed, 23 insertions, 23 deletions
diff --git a/cc/scrollbar_layer_unittest.cc b/cc/scrollbar_layer_unittest.cc
index e3e9a19..5b8b4af 100644
--- a/cc/scrollbar_layer_unittest.cc
+++ b/cc/scrollbar_layer_unittest.cc
@@ -43,7 +43,7 @@ public:
virtual Orientation orientation() const OVERRIDE { return WebScrollbar::Horizontal; }
};
-TEST(ScrollbarLayerTest, resolveScrollLayerPointer)
+TEST(ScrollbarLayerChromiumTest, resolveScrollLayerPointer)
{
DebugScopedSetImplThread impl;
@@ -51,16 +51,16 @@ TEST(ScrollbarLayerTest, resolveScrollLayerPointer)
{
scoped_ptr<WebKit::WebScrollbar> scrollbar(FakeWebScrollbar::create());
- scoped_refptr<Layer> layerTreeRoot = Layer::create();
- scoped_refptr<Layer> child1 = Layer::create();
- scoped_refptr<Layer> child2 = ScrollbarLayer::create(scrollbar.Pass(), painter, WebKit::FakeWebScrollbarThemeGeometry::create(), child1->id());
+ scoped_refptr<LayerChromium> layerTreeRoot = LayerChromium::create();
+ scoped_refptr<LayerChromium> child1 = LayerChromium::create();
+ scoped_refptr<LayerChromium> child2 = ScrollbarLayerChromium::create(scrollbar.Pass(), painter, WebKit::FakeWebScrollbarThemeGeometry::create(), child1->id());
layerTreeRoot->addChild(child1);
layerTreeRoot->addChild(child2);
- scoped_ptr<LayerImpl> layerImplTreeRoot = TreeSynchronizer::synchronizeTrees(layerTreeRoot.get(), scoped_ptr<LayerImpl>(), 0);
+ scoped_ptr<CCLayerImpl> ccLayerTreeRoot = TreeSynchronizer::synchronizeTrees(layerTreeRoot.get(), scoped_ptr<CCLayerImpl>(), 0);
- LayerImpl* ccChild1 = layerImplTreeRoot->children()[0];
- ScrollbarLayerImpl* ccChild2 = static_cast<ScrollbarLayerImpl*>(layerImplTreeRoot->children()[1]);
+ CCLayerImpl* ccChild1 = ccLayerTreeRoot->children()[0];
+ CCScrollbarLayerImpl* ccChild2 = static_cast<CCScrollbarLayerImpl*>(ccLayerTreeRoot->children()[1]);
EXPECT_TRUE(ccChild1->scrollbarAnimationController());
EXPECT_EQ(ccChild1->horizontalScrollbarLayer(), ccChild2);
@@ -68,32 +68,32 @@ TEST(ScrollbarLayerTest, resolveScrollLayerPointer)
{ // another traverse order
scoped_ptr<WebKit::WebScrollbar> scrollbar(FakeWebScrollbar::create());
- scoped_refptr<Layer> layerTreeRoot = Layer::create();
- scoped_refptr<Layer> child2 = Layer::create();
- scoped_refptr<Layer> child1 = ScrollbarLayer::create(scrollbar.Pass(), painter, WebKit::FakeWebScrollbarThemeGeometry::create(), child2->id());
+ scoped_refptr<LayerChromium> layerTreeRoot = LayerChromium::create();
+ scoped_refptr<LayerChromium> child2 = LayerChromium::create();
+ scoped_refptr<LayerChromium> child1 = ScrollbarLayerChromium::create(scrollbar.Pass(), painter, WebKit::FakeWebScrollbarThemeGeometry::create(), child2->id());
layerTreeRoot->addChild(child1);
layerTreeRoot->addChild(child2);
- scoped_ptr<LayerImpl> layerImplTreeRoot = TreeSynchronizer::synchronizeTrees(layerTreeRoot.get(), scoped_ptr<LayerImpl>(), 0);
+ scoped_ptr<CCLayerImpl> ccLayerTreeRoot = TreeSynchronizer::synchronizeTrees(layerTreeRoot.get(), scoped_ptr<CCLayerImpl>(), 0);
- ScrollbarLayerImpl* ccChild1 = static_cast<ScrollbarLayerImpl*>(layerImplTreeRoot->children()[0]);
- LayerImpl* ccChild2 = layerImplTreeRoot->children()[1];
+ CCScrollbarLayerImpl* ccChild1 = static_cast<CCScrollbarLayerImpl*>(ccLayerTreeRoot->children()[0]);
+ CCLayerImpl* ccChild2 = ccLayerTreeRoot->children()[1];
EXPECT_TRUE(ccChild2->scrollbarAnimationController());
EXPECT_EQ(ccChild2->horizontalScrollbarLayer(), ccChild1);
}
}
-TEST(ScrollbarLayerTest, scrollOffsetSynchronization)
+TEST(ScrollbarLayerChromiumTest, scrollOffsetSynchronization)
{
DebugScopedSetImplThread impl;
WebKit::WebScrollbarThemePainter painter;
scoped_ptr<WebKit::WebScrollbar> scrollbar(FakeWebScrollbar::create());
- scoped_refptr<Layer> layerTreeRoot = Layer::create();
- scoped_refptr<Layer> contentLayer = Layer::create();
- scoped_refptr<Layer> scrollbarLayer = ScrollbarLayer::create(scrollbar.Pass(), painter, WebKit::FakeWebScrollbarThemeGeometry::create(), layerTreeRoot->id());
+ scoped_refptr<LayerChromium> layerTreeRoot = LayerChromium::create();
+ scoped_refptr<LayerChromium> contentLayer = LayerChromium::create();
+ scoped_refptr<LayerChromium> scrollbarLayer = ScrollbarLayerChromium::create(scrollbar.Pass(), painter, WebKit::FakeWebScrollbarThemeGeometry::create(), layerTreeRoot->id());
layerTreeRoot->addChild(contentLayer);
layerTreeRoot->addChild(scrollbarLayer);
@@ -101,9 +101,9 @@ TEST(ScrollbarLayerTest, scrollOffsetSynchronization)
layerTreeRoot->setMaxScrollPosition(IntSize(30, 50));
contentLayer->setBounds(IntSize(100, 200));
- scoped_ptr<LayerImpl> layerImplTreeRoot = TreeSynchronizer::synchronizeTrees(layerTreeRoot.get(), scoped_ptr<LayerImpl>(), 0);
+ scoped_ptr<CCLayerImpl> ccLayerTreeRoot = TreeSynchronizer::synchronizeTrees(layerTreeRoot.get(), scoped_ptr<CCLayerImpl>(), 0);
- ScrollbarLayerImpl* ccScrollbarLayer = static_cast<ScrollbarLayerImpl*>(layerImplTreeRoot->children()[1]);
+ CCScrollbarLayerImpl* ccScrollbarLayer = static_cast<CCScrollbarLayerImpl*>(ccLayerTreeRoot->children()[1]);
EXPECT_EQ(10, ccScrollbarLayer->currentPos());
EXPECT_EQ(100, ccScrollbarLayer->totalSize());
@@ -113,15 +113,15 @@ TEST(ScrollbarLayerTest, scrollOffsetSynchronization)
layerTreeRoot->setMaxScrollPosition(IntSize(300, 500));
contentLayer->setBounds(IntSize(1000, 2000));
- ScrollbarAnimationController* scrollbarController = layerImplTreeRoot->scrollbarAnimationController();
- layerImplTreeRoot = TreeSynchronizer::synchronizeTrees(layerTreeRoot.get(), layerImplTreeRoot.Pass(), 0);
- EXPECT_EQ(scrollbarController, layerImplTreeRoot->scrollbarAnimationController());
+ CCScrollbarAnimationController* scrollbarController = ccLayerTreeRoot->scrollbarAnimationController();
+ ccLayerTreeRoot = TreeSynchronizer::synchronizeTrees(layerTreeRoot.get(), ccLayerTreeRoot.Pass(), 0);
+ EXPECT_EQ(scrollbarController, ccLayerTreeRoot->scrollbarAnimationController());
EXPECT_EQ(100, ccScrollbarLayer->currentPos());
EXPECT_EQ(1000, ccScrollbarLayer->totalSize());
EXPECT_EQ(300, ccScrollbarLayer->maximum());
- layerImplTreeRoot->scrollBy(FloatSize(12, 34));
+ ccLayerTreeRoot->scrollBy(FloatSize(12, 34));
EXPECT_EQ(112, ccScrollbarLayer->currentPos());
EXPECT_EQ(1000, ccScrollbarLayer->totalSize());