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

Unified Diff: sky/sdk/lib/widgets/snack_bar.dart

Issue 1226113007: Add @override annotation to known overriden methods (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/sdk/lib/widgets/scrollable_list.dart ('k') | sky/sdk/lib/widgets/tabs.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/sdk/lib/widgets/snack_bar.dart
diff --git a/sky/sdk/lib/widgets/snack_bar.dart b/sky/sdk/lib/widgets/snack_bar.dart
index d1cb54027a63cdcce4c1bb34463079e49e32f4fb..ecebe70f7dbde652e0cad53c14af7d016a7282fe 100644
--- a/sky/sdk/lib/widgets/snack_bar.dart
+++ b/sky/sdk/lib/widgets/snack_bar.dart
@@ -17,6 +17,7 @@ class SnackBarAction extends Component {
final String label;
final Function onPressed;
+ @override
Widget build() {
return new Listener(
onGestureTap: (_) => onPressed(),
@@ -42,6 +43,7 @@ class SnackBar extends Component {
final Widget content;
final List<SnackBarAction> actions;
+ @override
Widget build() {
List<Widget> children = [
new Flexible(
« no previous file with comments | « sky/sdk/lib/widgets/scrollable_list.dart ('k') | sky/sdk/lib/widgets/tabs.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698