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

Unified Diff: cc/test/fake_content_layer_impl.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/fake_content_layer_client.cc ('k') | cc/test/fake_content_layer_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/fake_content_layer_impl.h
diff --git a/cc/test/fake_content_layer_impl.h b/cc/test/fake_content_layer_impl.h
deleted file mode 100644
index d199fad9bac20c60875109492b31e48907b06aaf..0000000000000000000000000000000000000000
--- a/cc/test/fake_content_layer_impl.h
+++ /dev/null
@@ -1,51 +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_IMPL_H_
-#define CC_TEST_FAKE_CONTENT_LAYER_IMPL_H_
-
-#include "base/memory/scoped_ptr.h"
-#include "cc/layers/tiled_layer_impl.h"
-
-namespace cc {
-
-class FakeContentLayerImpl : public TiledLayerImpl {
- public:
- static scoped_ptr<FakeContentLayerImpl> Create(
- LayerTreeImpl* tree_impl, int id) {
- return make_scoped_ptr(new FakeContentLayerImpl(
- tree_impl, id, new LayerImpl::SyncedScrollOffset));
- }
- static scoped_ptr<FakeContentLayerImpl> Create(
- LayerTreeImpl* tree_impl,
- int id,
- scoped_refptr<LayerImpl::SyncedScrollOffset> synced_scroll_offset) {
- return make_scoped_ptr(
- new FakeContentLayerImpl(tree_impl, id, synced_scroll_offset));
- }
- ~FakeContentLayerImpl() override;
-
- scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl) override;
-
- bool HaveResourceForTileAt(int i, int j);
-
- size_t lost_output_surface_count() const {
- return lost_output_surface_count_;
- }
- void reset_lost_output_surface_count() { lost_output_surface_count_ = 0; }
-
- void ReleaseResources() override;
-
- private:
- explicit FakeContentLayerImpl(
- LayerTreeImpl* tree_impl,
- int id,
- scoped_refptr<LayerImpl::SyncedScrollOffset> synced_scroll_offset);
-
- size_t lost_output_surface_count_;
-};
-
-} // namespace cc
-
-#endif // CC_TEST_FAKE_CONTENT_LAYER_IMPL_H_
« no previous file with comments | « cc/test/fake_content_layer_client.cc ('k') | cc/test/fake_content_layer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698