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

Unified Diff: ui/compositor/layer_unittest.cc

Issue 2691393002: Fix auto raw pointer deduction on linux (Closed)
Patch Set: rebase Created 3 years, 10 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
« no previous file with comments | « ui/aura/mus/property_converter.cc ('k') | ui/events/gestures/gesture_recognizer_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/compositor/layer_unittest.cc
diff --git a/ui/compositor/layer_unittest.cc b/ui/compositor/layer_unittest.cc
index b1870ecb14b1578ea203220035725e3679021ceb..f52ae02d4752dbdda3f1eaa92584380bae25f778 100644
--- a/ui/compositor/layer_unittest.cc
+++ b/ui/compositor/layer_unittest.cc
@@ -1895,8 +1895,8 @@ TEST_F(LayerWithRealCompositorTest, AddRemoveThreadedAnimations) {
l1->SetAnimator(LayerAnimator::CreateImplicitAnimator());
l2->SetAnimator(LayerAnimator::CreateImplicitAnimator());
- auto player1 = l1->GetAnimator()->GetAnimationPlayerForTesting();
- auto player2 = l2->GetAnimator()->GetAnimationPlayerForTesting();
+ auto* player1 = l1->GetAnimator()->GetAnimationPlayerForTesting();
+ auto* player2 = l2->GetAnimator()->GetAnimationPlayerForTesting();
EXPECT_FALSE(player1->has_any_animation());
« no previous file with comments | « ui/aura/mus/property_converter.cc ('k') | ui/events/gestures/gesture_recognizer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698