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

Side by Side Diff: third_party/pkg/angular/test/io/test_files/cssUrls/main.dart

Issue 257423008: Update all Angular libs (run update_all.sh). (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 8 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 library test_files.main; 1 library test_files.main;
2 2
3 import 'package:angular/core/module.dart'; 3 import 'package:angular/core/annotation_src.dart';
4 4
5 @NgComponent( 5 @Component(
6 selector: 'my-component', 6 selector: 'my-component',
7 cssUrl: '/test/io/test_files/cssUrls/one.css') 7 cssUrl: '/test/io/test_files/cssUrls/one.css')
8 class MyComponent 8 class MyComponent
9 { 9 {
10 } 10 }
11 11
12 @NgComponent( 12 @Component(
13 selector: 'my-component2', 13 selector: 'my-component2',
14 cssUrl: const [ 14 cssUrl: const [
15 '/test/io/test_files/cssUrls/two.css', 15 '/test/io/test_files/cssUrls/two.css',
16 '/test/io/test_files/cssUrls/three.css']) 16 '/test/io/test_files/cssUrls/three.css'])
17 class MyComponent2 17 class MyComponent2
18 { 18 {
19 } 19 }
20 20
21 @NgComponent( 21 @Component(
22 selector: 'my-component3', 22 selector: 'my-component3',
23 cssUrl: '/test/io/test_files/cssUrls/four.css') 23 cssUrl: '/test/io/test_files/cssUrls/four.css')
24 class MyComponent3 24 class MyComponent3
25 { 25 {
26 } 26 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698