| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 1 library apidoc_resources; | 5 library apidoc_resources; |
| 2 | 6 |
| 7 // TODO(jacobr): actually use these named resources or remove this file. |
| 3 final Collapse = 'collapseall.gif'; | 8 final Collapse = 'collapseall.gif'; |
| 4 final DART_FILE = 'dart.png'; | 9 final DART_FILE = 'dart.png'; |
| 5 final DART_LIBRARY = 'dart_library.png'; | 10 final DART_LIBRARY = 'dart_library.png'; |
| 6 final COMMENT = 'insert_comment.png'; // Large icon | 11 final COMMENT = 'insert_comment.png'; // Large icon |
| 7 final ALPHABETICAL_SORT = 'alphab_sort_co.gif'; | 12 final ALPHABETICAL_SORT = 'alphab_sort_co.gif'; |
| 8 final CH_CALLES = 'ch_callees.gif'; | 13 final CH_CALLES = 'ch_callees.gif'; |
| 9 final CH_CALLERS = 'ch_callers.gif'; | 14 final CH_CALLERS = 'ch_callers.gif'; |
| 10 final FOLDER_BLUE = 'folder.png'; | 15 final FOLDER_BLUE = 'folder.png'; |
| 11 final FOLDER_REGULAR_PACKAGE = 'fldr_obj_pkg.png'; | 16 final FOLDER_REGULAR_PACKAGE = 'fldr_obj_pkg.png'; |
| 12 final FOLDER_OBJ_EXCLUDED = 'flder_obj_excl.png'; | 17 final FOLDER_OBJ_EXCLUDED = 'flder_obj_excl.png'; |
| (...skipping 22 matching lines...) Expand all Loading... |
| 35 | 40 |
| 36 final FIELD_PRIVATE = 'field_private.png'; | 41 final FIELD_PRIVATE = 'field_private.png'; |
| 37 final FIELD_PUBLIC = 'field_public.png'; | 42 final FIELD_PUBLIC = 'field_public.png'; |
| 38 | 43 |
| 39 final FUNCTION_TYPE_PRIVATE = 'functiontype_private.png'; | 44 final FUNCTION_TYPE_PRIVATE = 'functiontype_private.png'; |
| 40 final FUNCTION_TYPE_PUBLIC = 'functiontype_public.png'; | 45 final FUNCTION_TYPE_PUBLIC = 'functiontype_public.png'; |
| 41 | 46 |
| 42 final HISTORY_LIST = 'history_list.gif'; | 47 final HISTORY_LIST = 'history_list.gif'; |
| 43 | 48 |
| 44 | 49 |
| OLD | NEW |