Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 >>> | |
| 2 class ListResultDescriptor { | |
| 3 factory ListResultDescriptor(String name, List<E> defaultValue, | |
| 4 {ResultCachingPolicy< | |
| 5 List<E>> cachingPolicy}) = ListResultDescriptorImpl<E>; | |
| 6 } | |
| 7 <<< | |
| 8 class ListResultDescriptor { | |
| 9 factory ListResultDescriptor(String name, List<E> defaultValue, | |
| 10 {ResultCachingPolicy<List<E>> cachingPolicy}) = | |
| 11 ListResultDescriptorImpl<E>; | |
| 12 } | |
| OLD | NEW |