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

Unified Diff: cc/trees/layer_tree_impl.h

Issue 2185823005: Make RenderViewImpl::OnForceRedraw more robust (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix comments and add tests Created 4 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 side-by-side diff with in-line comments
Download patch
Index: cc/trees/layer_tree_impl.h
diff --git a/cc/trees/layer_tree_impl.h b/cc/trees/layer_tree_impl.h
index 3d032fcc50bf7998f0b1382491b6891ad30072a0..e4f3d492b868886f8962fccabb4774fd1f2cd4cc 100644
--- a/cc/trees/layer_tree_impl.h
+++ b/cc/trees/layer_tree_impl.h
@@ -358,9 +358,9 @@ class CC_EXPORT LayerTreeImpl {
// on the active tree if a new tree is activated.
void QueuePinnedSwapPromise(std::unique_ptr<SwapPromise> swap_promise);
- // Take the |new_swap_promise| and append it to |swap_promise_list_|.
+ // Takes the |new_swap_promises| and appends it to |swap_promise_list_|.
danakj 2016/08/10 01:04:15 "appends them" while youre fixing this
void PassSwapPromises(
- std::vector<std::unique_ptr<SwapPromise>>* new_swap_promise);
+ std::vector<std::unique_ptr<SwapPromise>>* new_swap_promises);
void FinishSwapPromises(CompositorFrameMetadata* metadata);
void BreakSwapPromises(SwapPromise::DidNotSwapReason reason);

Powered by Google App Engine
This is Rietveld 408576698