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

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

Issue 2106503002: Revert of cc: Add mailbox support to ResourceProvider write locks. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@worker_context_sync_tokens_revert
Patch Set: Created 4 years, 5 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_tile_manager.cc ('k') | cc/test/fake_tile_task_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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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_TILE_TASK_MANAGER_H_ 5 #ifndef CC_TEST_FAKE_TILE_TASK_MANAGER_H_
6 #define CC_TEST_FAKE_TILE_TASK_MANAGER_H_ 6 #define CC_TEST_FAKE_TILE_TASK_MANAGER_H_
7 7
8 #include "cc/test/fake_raster_buffer_provider.h" 8 #include "cc/test/fake_raster_buffer_provider.h"
9 #include "cc/tiles/tile_task_manager.h" 9 #include "cc/tiles/tile_task_manager.h"
10 10
11 namespace cc { 11 namespace cc {
12 12
13 // This class immediately cancels the scheduled work, i.e. in ScheduleTasks() 13 // This class immediately cancels the scheduled work, i.e. in ScheduleTasks()
14 // it cancels all the tasks. 14 // it cancels all the tasks.
15 class FakeTileTaskManagerImpl : public TileTaskManager { 15 class FakeTileTaskManagerImpl : public TileTaskManager {
16 public: 16 public:
17 FakeTileTaskManagerImpl(); 17 FakeTileTaskManagerImpl();
18 // Ctor for custom raster buffer provider.
19 FakeTileTaskManagerImpl(
20 std::unique_ptr<RasterBufferProvider> raster_buffer_provider);
18 ~FakeTileTaskManagerImpl() override; 21 ~FakeTileTaskManagerImpl() override;
19 22
20 // Overridden from TileTaskManager: 23 // Overridden from TileTaskManager:
21 void ScheduleTasks(TaskGraph* graph) override; 24 void ScheduleTasks(TaskGraph* graph) override;
22 void CheckForCompletedTasks() override; 25 void CheckForCompletedTasks() override;
23 void Shutdown() override; 26 void Shutdown() override;
27 RasterBufferProvider* GetRasterBufferProvider() const override;
24 28
25 protected: 29 protected:
30 std::unique_ptr<RasterBufferProvider> raster_buffer_provider_;
26 Task::Vector completed_tasks_; 31 Task::Vector completed_tasks_;
27 }; 32 };
28 33
29 } // namespace cc 34 } // namespace cc
30 35
31 #endif // CC_TEST_FAKE_TILE_TASK_MANAGER_H_ 36 #endif // CC_TEST_FAKE_TILE_TASK_MANAGER_H_
OLDNEW
« no previous file with comments | « cc/test/fake_tile_manager.cc ('k') | cc/test/fake_tile_task_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698