Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3162)

Unified Diff: cc/content_layer_unittest.cc

Issue 12603013: Part 10 of cc/ directory shuffles: layers (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/content_layer_client.h ('k') | cc/contents_scaling_layer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/content_layer_unittest.cc
diff --git a/cc/content_layer_unittest.cc b/cc/content_layer_unittest.cc
deleted file mode 100644
index 0e940625c1058682f4da0774961100eb37a9bd53..0000000000000000000000000000000000000000
--- a/cc/content_layer_unittest.cc
+++ /dev/null
@@ -1,58 +0,0 @@
-// 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 "cc/content_layer.h"
-
-#include "cc/content_layer_client.h"
-#include "cc/resources/bitmap_content_layer_updater.h"
-#include "cc/test/geometry_test_utils.h"
-#include "skia/ext/platform_canvas.h"
-#include "testing/gtest/include/gtest/gtest.h"
-#include "ui/gfx/rect_conversions.h"
-
-using namespace WebKit;
-
-namespace cc {
-namespace {
-
-class MockContentLayerClient : public ContentLayerClient {
- public:
- explicit MockContentLayerClient(gfx::Rect opaque_layer_rect)
- : opaque_layer_rect_(opaque_layer_rect) {}
-
- virtual void PaintContents(SkCanvas* canvas,
- gfx::Rect clip,
- gfx::RectF* opaque) OVERRIDE {
- *opaque = gfx::RectF(opaque_layer_rect_);
- }
-
- private:
- gfx::Rect opaque_layer_rect_;
-};
-
-TEST(ContentLayerTest, ContentLayerPainterWithDeviceScale) {
- float contents_scale = 2.f;
- gfx::Rect content_rect(10, 10, 100, 100);
- gfx::Rect opaque_rect_in_layer_space(5, 5, 20, 20);
- gfx::RectF opaque_rect_in_content_space = gfx::ScaleRect(
- opaque_rect_in_layer_space, contents_scale, contents_scale);
- MockContentLayerClient client(opaque_rect_in_layer_space);
- scoped_refptr<BitmapContentLayerUpdater> updater =
- BitmapContentLayerUpdater::Create(ContentLayerPainter::Create(&client).
- PassAs<LayerPainter>());
-
- gfx::Rect resulting_opaque_rect;
- updater->PrepareToUpdate(content_rect,
- gfx::Size(256, 256),
- contents_scale,
- contents_scale,
- &resulting_opaque_rect,
- NULL);
-
- EXPECT_RECT_EQ(gfx::ToEnclosingRect(opaque_rect_in_content_space),
- resulting_opaque_rect);
-}
-
-} // namespace
-} // namespace cc
« no previous file with comments | « cc/content_layer_client.h ('k') | cc/contents_scaling_layer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698