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

Unified Diff: third_party/WebKit/Source/platform/animation/AnimationTranslationUtil.cpp

Issue 2616863002: Remove TransformOperation::None (Closed)
Patch Set: address comments Created 3 years, 11 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: third_party/WebKit/Source/platform/animation/AnimationTranslationUtil.cpp
diff --git a/third_party/WebKit/Source/platform/animation/AnimationTranslationUtil.cpp b/third_party/WebKit/Source/platform/animation/AnimationTranslationUtil.cpp
index b6f9f765a3b5beee849b038c967a48e490cf5d26..ea2e7aed4d9f7cf931ac6db9be45345fd59ce39b 100644
--- a/third_party/WebKit/Source/platform/animation/AnimationTranslationUtil.cpp
+++ b/third_party/WebKit/Source/platform/animation/AnimationTranslationUtil.cpp
@@ -120,8 +120,8 @@ void toCompositorTransformOperations(
case TransformOperation::Identity:
outTransformOperations->appendIdentity();
break;
- case TransformOperation::None:
- // Do nothing.
+ default:
+ NOTREACHED();
break;
} // switch
} // for each operation

Powered by Google App Engine
This is Rietveld 408576698