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

Unified Diff: sky/engine/core/painting/ColorFilter.dart

Issue 1179913002: Fix up constructor naming style for MaskFilter and ColorFilter. (Closed) Base URL: git@github.com:/domokit/mojo.git@master
Patch Set: Created 5 years, 6 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 | « no previous file | sky/engine/core/painting/MaskFilter.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/painting/ColorFilter.dart
diff --git a/sky/engine/core/painting/ColorFilter.dart b/sky/engine/core/painting/ColorFilter.dart
index f7e261b18a5a7209434a0a677395fe56a20efedf..a3b61136eebb94be4efafea3ca2d91b65fc341b4 100644
--- a/sky/engine/core/painting/ColorFilter.dart
+++ b/sky/engine/core/painting/ColorFilter.dart
@@ -8,6 +8,6 @@ part of dart.sky;
class ColorFilter extends _ColorFilter {
// This is the only ColorFilter type we need, but use a named constructor so
// we can add more in the future.
- ColorFilter.Mode(Color color, TransferMode transferMode)
+ ColorFilter.mode(Color color, TransferMode transferMode)
: super(color, transferMode) {}
}
« no previous file with comments | « no previous file | sky/engine/core/painting/MaskFilter.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698