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

Unified Diff: cc/test/fake_content_layer.h

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/data/yuv_stripes_offset.png ('k') | cc/test/fake_content_layer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/fake_content_layer.h
diff --git a/cc/test/fake_content_layer.h b/cc/test/fake_content_layer.h
deleted file mode 100644
index fd0968319df2093af5de08fda7a9ac96cfb26c00..0000000000000000000000000000000000000000
--- a/cc/test/fake_content_layer.h
+++ /dev/null
@@ -1,57 +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.
-
-#ifndef CC_TEST_FAKE_CONTENT_LAYER_H_
-#define CC_TEST_FAKE_CONTENT_LAYER_H_
-
-#include "base/memory/scoped_ptr.h"
-#include "cc/layers/content_layer.h"
-
-namespace cc {
-
-class FakeContentLayer : public ContentLayer {
- public:
- static scoped_refptr<FakeContentLayer> Create(ContentLayerClient* client) {
- return make_scoped_refptr(new FakeContentLayer(client));
- }
-
- scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl) override;
-
- size_t update_count() const { return update_count_; }
- void reset_update_count() { update_count_ = 0; }
-
- size_t push_properties_count() const { return push_properties_count_; }
- void reset_push_properties_count() { push_properties_count_ = 0; }
-
- bool Update(ResourceUpdateQueue* queue,
- const OcclusionTracker<Layer>* occlusion) override;
-
- gfx::Rect LastPaintRect() const;
-
- void set_always_update_resources(bool always_update_resources) {
- always_update_resources_ = always_update_resources;
- }
-
- void PushPropertiesTo(LayerImpl* layer) override;
-
- void OnOutputSurfaceCreated() override;
- size_t output_surface_created_count() const {
- return output_surface_created_count_;
- }
-
- bool HaveBackingAt(int i, int j);
-
- private:
- explicit FakeContentLayer(ContentLayerClient* client);
- ~FakeContentLayer() override;
-
- size_t update_count_;
- size_t push_properties_count_;
- size_t output_surface_created_count_;
- bool always_update_resources_;
-};
-
-} // namespace cc
-
-#endif // CC_TEST_FAKE_CONTENT_LAYER_H_
« no previous file with comments | « cc/test/data/yuv_stripes_offset.png ('k') | cc/test/fake_content_layer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698