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

Unified Diff: cc/test/fake_content_layer.cc

Issue 1057283003: Remove parts of //cc we aren't using (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 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/test/fake_content_layer.h ('k') | cc/test/fake_content_layer_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/fake_content_layer.cc
diff --git a/cc/test/fake_content_layer.cc b/cc/test/fake_content_layer.cc
deleted file mode 100644
index a0a01eee7fb650074d1c2fe1176359a3d75586a8..0000000000000000000000000000000000000000
--- a/cc/test/fake_content_layer.cc
+++ /dev/null
@@ -1,64 +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/test/fake_content_layer.h"
-
-#include "cc/resources/content_layer_updater.h"
-#include "cc/resources/prioritized_resource.h"
-#include "cc/test/fake_content_layer_impl.h"
-
-namespace cc {
-
-class FakeContentLayerUpdater : public ContentLayerUpdater {
- public:
- using ContentLayerUpdater::paint_rect;
-
- private:
- ~FakeContentLayerUpdater() override {}
-};
-
-FakeContentLayer::FakeContentLayer(ContentLayerClient* client)
- : ContentLayer(client),
- update_count_(0),
- push_properties_count_(0),
- output_surface_created_count_(0),
- always_update_resources_(false) {
- SetBounds(gfx::Size(1, 1));
- SetIsDrawable(true);
-}
-
-FakeContentLayer::~FakeContentLayer() {}
-
-scoped_ptr<LayerImpl> FakeContentLayer::CreateLayerImpl(
- LayerTreeImpl* tree_impl) {
- return FakeContentLayerImpl::Create(tree_impl, layer_id_);
-}
-
-bool FakeContentLayer::Update(ResourceUpdateQueue* queue,
- const OcclusionTracker<Layer>* occlusion) {
- bool updated = ContentLayer::Update(queue, occlusion);
- update_count_++;
- return updated || always_update_resources_;
-}
-
-gfx::Rect FakeContentLayer::LastPaintRect() const {
- return (static_cast<FakeContentLayerUpdater*>(Updater()))->paint_rect();
-}
-
-void FakeContentLayer::PushPropertiesTo(LayerImpl* layer) {
- ContentLayer::PushPropertiesTo(layer);
- push_properties_count_++;
-}
-
-void FakeContentLayer::OnOutputSurfaceCreated() {
- ContentLayer::OnOutputSurfaceCreated();
- output_surface_created_count_++;
-}
-
-bool FakeContentLayer::HaveBackingAt(int i, int j) {
- const PrioritizedResource* resource = ResourceAtForTesting(i, j);
- return resource && resource->have_backing_texture();
-}
-
-} // namespace cc
« no previous file with comments | « cc/test/fake_content_layer.h ('k') | cc/test/fake_content_layer_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698