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

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

Issue 1230203007: Re-land: cc: Use worker context for one-copy tile initialization. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 4 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/layer_tree_pixel_test.cc ('k') | cc/test/layer_tree_test.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 2011 The Chromium Authors. All rights reserved. 1 // Copyright 2011 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_LAYER_TREE_TEST_H_ 5 #ifndef CC_TEST_LAYER_TREE_TEST_H_
6 #define CC_TEST_LAYER_TREE_TEST_H_ 6 #define CC_TEST_LAYER_TREE_TEST_H_
7 7
8 #include "base/memory/ref_counted.h" 8 #include "base/memory/ref_counted.h"
9 #include "base/threading/thread.h" 9 #include "base/threading/thread.h"
10 #include "cc/animation/animation_delegate.h" 10 #include "cc/animation/animation_delegate.h"
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 class TestHooks : public AnimationDelegate { 48 class TestHooks : public AnimationDelegate {
49 public: 49 public:
50 TestHooks(); 50 TestHooks();
51 ~TestHooks() override; 51 ~TestHooks() override;
52 52
53 void ReadSettings(const LayerTreeSettings& settings); 53 void ReadSettings(const LayerTreeSettings& settings);
54 54
55 virtual void CreateResourceAndTileTaskWorkerPool( 55 virtual void CreateResourceAndTileTaskWorkerPool(
56 LayerTreeHostImpl* host_impl, 56 LayerTreeHostImpl* host_impl,
57 scoped_ptr<TileTaskWorkerPool>* tile_task_worker_pool, 57 scoped_ptr<TileTaskWorkerPool>* tile_task_worker_pool,
58 scoped_ptr<ResourcePool>* resource_pool, 58 scoped_ptr<ResourcePool>* resource_pool);
59 scoped_ptr<ResourcePool>* staging_resource_pool);
60 virtual void WillBeginImplFrameOnThread(LayerTreeHostImpl* host_impl, 59 virtual void WillBeginImplFrameOnThread(LayerTreeHostImpl* host_impl,
61 const BeginFrameArgs& args) {} 60 const BeginFrameArgs& args) {}
62 virtual void DidFinishImplFrameOnThread(LayerTreeHostImpl* host_impl) {} 61 virtual void DidFinishImplFrameOnThread(LayerTreeHostImpl* host_impl) {}
63 virtual void BeginMainFrameAbortedOnThread(LayerTreeHostImpl* host_impl, 62 virtual void BeginMainFrameAbortedOnThread(LayerTreeHostImpl* host_impl,
64 CommitEarlyOutReason reason) {} 63 CommitEarlyOutReason reason) {}
65 virtual void BeginCommitOnThread(LayerTreeHostImpl* host_impl) {} 64 virtual void BeginCommitOnThread(LayerTreeHostImpl* host_impl) {}
66 virtual void CommitCompleteOnThread(LayerTreeHostImpl* host_impl) {} 65 virtual void CommitCompleteOnThread(LayerTreeHostImpl* host_impl) {}
67 virtual void WillActivateTreeOnThread(LayerTreeHostImpl* host_impl) {} 66 virtual void WillActivateTreeOnThread(LayerTreeHostImpl* host_impl) {}
68 virtual void DidActivateTreeOnThread(LayerTreeHostImpl* host_impl) {} 67 virtual void DidActivateTreeOnThread(LayerTreeHostImpl* host_impl) {}
69 virtual void InitializedRendererOnThread(LayerTreeHostImpl* host_impl, 68 virtual void InitializedRendererOnThread(LayerTreeHostImpl* host_impl,
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 #define SINGLE_AND_MULTI_THREAD_TEST_F(TEST_FIXTURE_NAME) \ 325 #define SINGLE_AND_MULTI_THREAD_TEST_F(TEST_FIXTURE_NAME) \
327 SINGLE_AND_MULTI_THREAD_DIRECT_RENDERER_TEST_F(TEST_FIXTURE_NAME); \ 326 SINGLE_AND_MULTI_THREAD_DIRECT_RENDERER_TEST_F(TEST_FIXTURE_NAME); \
328 SINGLE_AND_MULTI_THREAD_DELEGATING_RENDERER_TEST_F(TEST_FIXTURE_NAME) 327 SINGLE_AND_MULTI_THREAD_DELEGATING_RENDERER_TEST_F(TEST_FIXTURE_NAME)
329 328
330 // Some tests want to control when notify ready for activation occurs, 329 // Some tests want to control when notify ready for activation occurs,
331 // but this is not supported in the single-threaded case. 330 // but this is not supported in the single-threaded case.
332 #define MULTI_THREAD_BLOCKNOTIFY_TEST_F(TEST_FIXTURE_NAME) \ 331 #define MULTI_THREAD_BLOCKNOTIFY_TEST_F(TEST_FIXTURE_NAME) \
333 MULTI_THREAD_TEST_F(TEST_FIXTURE_NAME) 332 MULTI_THREAD_TEST_F(TEST_FIXTURE_NAME)
334 333
335 #endif // CC_TEST_LAYER_TREE_TEST_H_ 334 #endif // CC_TEST_LAYER_TREE_TEST_H_
OLDNEW
« no previous file with comments | « cc/test/layer_tree_pixel_test.cc ('k') | cc/test/layer_tree_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698