From d04c87cbbc970d268556c05260b522ff088d1a82 Mon Sep 17 00:00:00 2001 From: Eric Seidel Date: Mon, 4 May 2015 14:18:19 -0700 Subject: [PATCH] Rename view-configuration to view_configuration to make analyzer happy. Analyzer was complaining about '-' not being an allowed character in dart file names. R=jamesr@chromium.org --- examples/stocks/lib/stock_menu.dart | 2 +- framework/components/action_bar.dart | 2 +- framework/components/drawer_header.dart | 2 +- framework/components/ink_splash.dart | 2 +- framework/components/scrollable.dart | 2 +- .../theme/{view-configuration.dart => view_configuration.dart} | 0 6 files changed, 5 insertions(+), 5 deletions(-) rename framework/theme/{view-configuration.dart => view_configuration.dart} (100%) diff --git a/examples/stocks/lib/stock_menu.dart b/examples/stocks/lib/stock_menu.dart index 9023ed244ef..03b09983d11 100644 --- a/examples/stocks/lib/stock_menu.dart +++ b/examples/stocks/lib/stock_menu.dart @@ -4,7 +4,7 @@ import 'package:sky/framework/components/popup_menu.dart'; import 'package:sky/framework/fn.dart'; -import 'package:sky/framework/theme/view-configuration.dart'; +import 'package:sky/framework/theme/view_configuration.dart'; class StockMenu extends Component { static final Style _style = new Style(''' diff --git a/framework/components/action_bar.dart b/framework/components/action_bar.dart index 0e34fbaeefc..e0b2ddfe756 100644 --- a/framework/components/action_bar.dart +++ b/framework/components/action_bar.dart @@ -3,7 +3,7 @@ // found in the LICENSE file. import '../fn.dart'; -import '../theme/view-configuration.dart'; +import '../theme/view_configuration.dart'; import 'material.dart'; class ActionBar extends Component { diff --git a/framework/components/drawer_header.dart b/framework/components/drawer_header.dart index da00446beb5..c1c1d528372 100644 --- a/framework/components/drawer_header.dart +++ b/framework/components/drawer_header.dart @@ -4,7 +4,7 @@ import '../fn.dart'; import '../theme/colors.dart'; -import '../theme/view-configuration.dart'; +import '../theme/view_configuration.dart'; class DrawerHeader extends Component { static final Style _style = new Style(''' diff --git a/framework/components/ink_splash.dart b/framework/components/ink_splash.dart index 0d147ad59ea..810c20c5816 100644 --- a/framework/components/ink_splash.dart +++ b/framework/components/ink_splash.dart @@ -5,7 +5,7 @@ import '../animation/animated_value.dart'; import '../animation/curves.dart'; import '../fn.dart'; -import '../theme/view-configuration.dart' as config; +import '../theme/view_configuration.dart' as config; import 'dart:async'; import 'dart:math' as math; import 'dart:sky' as sky; diff --git a/framework/components/scrollable.dart b/framework/components/scrollable.dart index 49310c1e3d3..3858a25fbf1 100644 --- a/framework/components/scrollable.dart +++ b/framework/components/scrollable.dart @@ -6,7 +6,7 @@ import '../animation/generators.dart'; import '../animation/mechanics.dart'; import '../animation/scroll_behavior.dart'; import '../fn.dart'; -import '../theme/view-configuration.dart' as config; +import '../theme/view_configuration.dart' as config; import 'dart:math' as math; import 'dart:sky' as sky; diff --git a/framework/theme/view-configuration.dart b/framework/theme/view_configuration.dart similarity index 100% rename from framework/theme/view-configuration.dart rename to framework/theme/view_configuration.dart