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

Side by Side Diff: services/ui/ws/scheduled_animation_group_unittest.cc

Issue 2119963002: Move mus to //services/ui (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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 | « services/ui/ws/scheduled_animation_group.cc ('k') | services/ui/ws/server_window.h » ('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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #include "components/mus/ws/scheduled_animation_group.h" 5 #include "services/ui/ws/scheduled_animation_group.h"
6 6
7 #include "components/mus/public/interfaces/animations.mojom.h" 7 #include "services/ui/public/interfaces/animations.mojom.h"
8 #include "components/mus/ws/server_window.h" 8 #include "services/ui/ws/server_window.h"
9 #include "components/mus/ws/test_server_window_delegate.h" 9 #include "services/ui/ws/test_server_window_delegate.h"
10 #include "testing/gtest/include/gtest/gtest.h" 10 #include "testing/gtest/include/gtest/gtest.h"
11 11
12 using mus::mojom::AnimationProperty; 12 using mus::mojom::AnimationProperty;
13 using mus::mojom::AnimationTweenType; 13 using mus::mojom::AnimationTweenType;
14 using mus::mojom::AnimationGroup; 14 using mus::mojom::AnimationGroup;
15 using mus::mojom::AnimationSequence; 15 using mus::mojom::AnimationSequence;
16 using mus::mojom::AnimationElement; 16 using mus::mojom::AnimationElement;
17 using mus::mojom::AnimationValue; 17 using mus::mojom::AnimationValue;
18 18
19 namespace mus { 19 namespace mus {
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 83
84 // Element with no target_value is not valid. 84 // Element with no target_value is not valid.
85 EXPECT_FALSE(IsAnimationGroupValid(group)); 85 EXPECT_FALSE(IsAnimationGroupValid(group));
86 86
87 element2.property = AnimationProperty::NONE; 87 element2.property = AnimationProperty::NONE;
88 EXPECT_TRUE(IsAnimationGroupValid(group)); 88 EXPECT_TRUE(IsAnimationGroupValid(group));
89 } 89 }
90 90
91 } // namespace ws 91 } // namespace ws
92 } // namespace mus 92 } // namespace mus
OLDNEW
« no previous file with comments | « services/ui/ws/scheduled_animation_group.cc ('k') | services/ui/ws/server_window.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698