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

Side by Side Diff: cc/trees/layer_tree_host_impl.h

Issue 2735943002: cc: Clarify that color spaces are for raster (Closed)
Patch Set: Rebase (a few times) Created 3 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 unified diff | Download patch
« no previous file with comments | « cc/trees/layer_tree_host.cc ('k') | cc/trees/layer_tree_host_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 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_TREES_LAYER_TREE_HOST_IMPL_H_ 5 #ifndef CC_TREES_LAYER_TREE_HOST_IMPL_H_
6 #define CC_TREES_LAYER_TREE_HOST_IMPL_H_ 6 #define CC_TREES_LAYER_TREE_HOST_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include <bitset> 10 #include <bitset>
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 void NotifyReadyToActivate() override; 348 void NotifyReadyToActivate() override;
349 void NotifyReadyToDraw() override; 349 void NotifyReadyToDraw() override;
350 void NotifyAllTileTasksCompleted() override; 350 void NotifyAllTileTasksCompleted() override;
351 void NotifyTileStateChanged(const Tile* tile) override; 351 void NotifyTileStateChanged(const Tile* tile) override;
352 std::unique_ptr<RasterTilePriorityQueue> BuildRasterQueue( 352 std::unique_ptr<RasterTilePriorityQueue> BuildRasterQueue(
353 TreePriority tree_priority, 353 TreePriority tree_priority,
354 RasterTilePriorityQueue::Type type) override; 354 RasterTilePriorityQueue::Type type) override;
355 std::unique_ptr<EvictionTilePriorityQueue> BuildEvictionQueue( 355 std::unique_ptr<EvictionTilePriorityQueue> BuildEvictionQueue(
356 TreePriority tree_priority) override; 356 TreePriority tree_priority) override;
357 void SetIsLikelyToRequireADraw(bool is_likely_to_require_a_draw) override; 357 void SetIsLikelyToRequireADraw(bool is_likely_to_require_a_draw) override;
358 gfx::ColorSpace GetTileColorSpace() const override; 358 gfx::ColorSpace GetRasterColorSpace() const override;
359 void RequestImplSideInvalidation() override; 359 void RequestImplSideInvalidation() override;
360 360
361 // ScrollbarAnimationControllerClient implementation. 361 // ScrollbarAnimationControllerClient implementation.
362 void PostDelayedScrollbarAnimationTask(const base::Closure& task, 362 void PostDelayedScrollbarAnimationTask(const base::Closure& task,
363 base::TimeDelta delay) override; 363 base::TimeDelta delay) override;
364 void SetNeedsAnimateForScrollbarAnimation() override; 364 void SetNeedsAnimateForScrollbarAnimation() override;
365 void SetNeedsRedrawForScrollbarAnimation() override; 365 void SetNeedsRedrawForScrollbarAnimation() override;
366 ScrollbarSet ScrollbarsFor(int scroll_layer_id) const override; 366 ScrollbarSet ScrollbarsFor(int scroll_layer_id) const override;
367 void DidChangeScrollbarVisibility() override; 367 void DidChangeScrollbarVisibility() override;
368 368
(...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after
843 843
844 std::unique_ptr<PendingTreeDurationHistogramTimer> 844 std::unique_ptr<PendingTreeDurationHistogramTimer>
845 pending_tree_duration_timer_; 845 pending_tree_duration_timer_;
846 846
847 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); 847 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl);
848 }; 848 };
849 849
850 } // namespace cc 850 } // namespace cc
851 851
852 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ 852 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_
OLDNEW
« no previous file with comments | « cc/trees/layer_tree_host.cc ('k') | cc/trees/layer_tree_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698