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

Side by Side Diff: cc/resources/tile_manager.h

Issue 628443002: replace OVERRIDE and FINAL with override and final in cc/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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/resources/texture_uploader_unittest.cc ('k') | cc/resources/tile_manager.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 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 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_RESOURCES_TILE_MANAGER_H_ 5 #ifndef CC_RESOURCES_TILE_MANAGER_H_
6 #define CC_RESOURCES_TILE_MANAGER_H_ 6 #define CC_RESOURCES_TILE_MANAGER_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <queue> 9 #include <queue>
10 #include <set> 10 #include <set>
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 RenderingStatsInstrumentation* rendering_stats_instrumentation); 176 RenderingStatsInstrumentation* rendering_stats_instrumentation);
177 177
178 // Methods called by Tile 178 // Methods called by Tile
179 friend class Tile; 179 friend class Tile;
180 void DidChangeTilePriority(Tile* tile); 180 void DidChangeTilePriority(Tile* tile);
181 181
182 void FreeResourcesForReleasedTiles(); 182 void FreeResourcesForReleasedTiles();
183 void CleanUpReleasedTiles(); 183 void CleanUpReleasedTiles();
184 184
185 // Overriden from RefCountedManager<Tile>: 185 // Overriden from RefCountedManager<Tile>:
186 virtual void Release(Tile* tile) OVERRIDE; 186 virtual void Release(Tile* tile) override;
187 187
188 // Overriden from RasterizerClient: 188 // Overriden from RasterizerClient:
189 virtual void DidFinishRunningTasks(TaskSet task_set) OVERRIDE; 189 virtual void DidFinishRunningTasks(TaskSet task_set) override;
190 virtual TaskSetCollection TasksThatShouldBeForcedToComplete() const OVERRIDE; 190 virtual TaskSetCollection TasksThatShouldBeForcedToComplete() const override;
191 191
192 typedef std::vector<Tile*> TileVector; 192 typedef std::vector<Tile*> TileVector;
193 typedef std::set<Tile*> TileSet; 193 typedef std::set<Tile*> TileSet;
194 194
195 // Virtual for test 195 // Virtual for test
196 virtual void ScheduleTasks( 196 virtual void ScheduleTasks(
197 const TileVector& tiles_that_need_to_be_rasterized); 197 const TileVector& tiles_that_need_to_be_rasterized);
198 198
199 void AssignGpuMemoryToTiles(PrioritizedTileSet* tiles, 199 void AssignGpuMemoryToTiles(PrioritizedTileSet* tiles,
200 TileVector* tiles_that_need_to_be_rasterized); 200 TileVector* tiles_that_need_to_be_rasterized);
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 std::vector<scoped_refptr<RasterTask> > orphan_raster_tasks_; 271 std::vector<scoped_refptr<RasterTask> > orphan_raster_tasks_;
272 272
273 UniqueNotifier ready_to_activate_check_notifier_; 273 UniqueNotifier ready_to_activate_check_notifier_;
274 274
275 DISALLOW_COPY_AND_ASSIGN(TileManager); 275 DISALLOW_COPY_AND_ASSIGN(TileManager);
276 }; 276 };
277 277
278 } // namespace cc 278 } // namespace cc
279 279
280 #endif // CC_RESOURCES_TILE_MANAGER_H_ 280 #endif // CC_RESOURCES_TILE_MANAGER_H_
OLDNEW
« no previous file with comments | « cc/resources/texture_uploader_unittest.cc ('k') | cc/resources/tile_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698