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

Side by Side Diff: cc/test/fake_picture_layer_impl.h

Issue 591473003: (Reland) cc:Use impl-side painting in LTH context lost test (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comment addressed. Created 6 years, 2 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 unified diff | Download patch
« no previous file with comments | « cc/test/fake_picture_layer.cc ('k') | cc/test/fake_picture_layer_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CC_TEST_FAKE_PICTURE_LAYER_IMPL_H_ 5 #ifndef CC_TEST_FAKE_PICTURE_LAYER_IMPL_H_
6 #define CC_TEST_FAKE_PICTURE_LAYER_IMPL_H_ 6 #define CC_TEST_FAKE_PICTURE_LAYER_IMPL_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "cc/layers/picture_layer_impl.h" 9 #include "cc/layers/picture_layer_impl.h"
10 10
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 void set_fixed_tile_size(const gfx::Size& size) { fixed_tile_size_ = size; } 105 void set_fixed_tile_size(const gfx::Size& size) { fixed_tile_size_ = size; }
106 106
107 void CreateDefaultTilingsAndTiles(); 107 void CreateDefaultTilingsAndTiles();
108 void SetAllTilesVisible(); 108 void SetAllTilesVisible();
109 void SetAllTilesReady(); 109 void SetAllTilesReady();
110 void SetAllTilesReadyInTiling(PictureLayerTiling* tiling); 110 void SetAllTilesReadyInTiling(PictureLayerTiling* tiling);
111 void SetTileReady(Tile* tile); 111 void SetTileReady(Tile* tile);
112 void ResetAllTilesPriorities(); 112 void ResetAllTilesPriorities();
113 PictureLayerTilingSet* GetTilings() { return tilings_.get(); } 113 PictureLayerTilingSet* GetTilings() { return tilings_.get(); }
114 114
115 size_t release_resources_count() const { return release_resources_count_; }
116 void reset_release_resources_count() { release_resources_count_ = 0; }
117
118 virtual void ReleaseResources() OVERRIDE;
119
115 protected: 120 protected:
116 FakePictureLayerImpl( 121 FakePictureLayerImpl(
117 LayerTreeImpl* tree_impl, 122 LayerTreeImpl* tree_impl,
118 int id, 123 int id,
119 scoped_refptr<PicturePileImpl> pile); 124 scoped_refptr<PicturePileImpl> pile);
120 FakePictureLayerImpl(LayerTreeImpl* tree_impl, 125 FakePictureLayerImpl(LayerTreeImpl* tree_impl,
121 int id, 126 int id,
122 scoped_refptr<PicturePileImpl> pile, 127 scoped_refptr<PicturePileImpl> pile,
123 const gfx::Size& layer_bounds); 128 const gfx::Size& layer_bounds);
124 FakePictureLayerImpl(LayerTreeImpl* tree_impl, int id); 129 FakePictureLayerImpl(LayerTreeImpl* tree_impl, int id);
125 130
126 private: 131 private:
127 gfx::Size fixed_tile_size_; 132 gfx::Size fixed_tile_size_;
128 133
129 size_t append_quads_count_; 134 size_t append_quads_count_;
130 size_t did_become_active_call_count_; 135 size_t did_become_active_call_count_;
131 bool has_valid_tile_priorities_; 136 bool has_valid_tile_priorities_;
132 bool use_set_valid_tile_priorities_flag_; 137 bool use_set_valid_tile_priorities_flag_;
138 size_t release_resources_count_;
133 }; 139 };
134 140
135 } // namespace cc 141 } // namespace cc
136 142
137 #endif // CC_TEST_FAKE_PICTURE_LAYER_IMPL_H_ 143 #endif // CC_TEST_FAKE_PICTURE_LAYER_IMPL_H_
OLDNEW
« no previous file with comments | « cc/test/fake_picture_layer.cc ('k') | cc/test/fake_picture_layer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698