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

Side by Side Diff: third_party/pkg/route_hierarchical/example/full/index.dart

Issue 180843004: Revert revision 33053 (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 9 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 | Annotate | Revision Log
OLDNEW
1 import 'package:logging/logging.dart'; 1 import 'package:logging/logging.dart';
2 import 'package:route_hierarchical/client.dart'; 2 import 'package:route_hierarchical/client.dart';
3 3
4 Router router; 4 Router router;
5 String homeLink; 5 String homeLink;
6 String portfolioLink; 6 String portfolioLink;
7 7
8 void main() { 8 void main() {
9 new Logger('') 9 new Logger('')
10 ..level = Level.FINEST 10 ..level = Level.FINEST
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 defaultRoute: true, 55 defaultRoute: true,
56 path: '/info') 56 path: '/info')
57 ..addRoute( 57 ..addRoute(
58 name: 'activities', 58 name: 'activities',
59 path: '/activities') 59 path: '/activities')
60 ..addRoute( 60 ..addRoute(
61 name: 'notes', 61 name: 'notes',
62 path: '/notes'); 62 path: '/notes');
63 } 63 }
64 } 64 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698