| OLD | NEW |
| 1 <head> | 1 <head> |
| 2 <link rel="import" href="breakpoint_list.html"> | 2 <link rel="import" href="breakpoint_list.html"> |
| 3 <link rel="import" href="class_view.html"> | 3 <link rel="import" href="class_view.html"> |
| 4 <link rel="import" href="code_view.html"> | 4 <link rel="import" href="code_view.html"> |
| 5 <link rel="import" href="error_view.html"> | 5 <link rel="import" href="error_view.html"> |
| 6 <link rel="import" href="field_view.html"> | 6 <link rel="import" href="field_view.html"> |
| 7 <link rel="import" href="function_view.html"> | 7 <link rel="import" href="function_view.html"> |
| 8 <link rel="import" href="heap_profile.html"> | 8 <link rel="import" href="heap_profile.html"> |
| 9 <link rel="import" href="instance_view.html"> | 9 <link rel="import" href="instance_view.html"> |
| 10 <link rel="import" href="isolate_list.html"> | 10 <link rel="import" href="isolate_list.html"> |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 </template> | 36 </template> |
| 37 <template if="{{ messageType == 'Library' }}"> | 37 <template if="{{ messageType == 'Library' }}"> |
| 38 <library-view app="{{ app }}" library="{{ message }}"></library-view> | 38 <library-view app="{{ app }}" library="{{ message }}"></library-view> |
| 39 </template> | 39 </template> |
| 40 <template if="{{ messageType == 'Class' }}"> | 40 <template if="{{ messageType == 'Class' }}"> |
| 41 <class-view app="{{ app }}" cls="{{ message }}"></class-view> | 41 <class-view app="{{ app }}" cls="{{ message }}"></class-view> |
| 42 </template> | 42 </template> |
| 43 <template if="{{ messageType == 'Field' }}"> | 43 <template if="{{ messageType == 'Field' }}"> |
| 44 <field-view app="{{ app }}" field="{{ message }}"></field-view> | 44 <field-view app="{{ app }}" field="{{ message }}"></field-view> |
| 45 </template> | 45 </template> |
| 46 <template if="{{ messageType == 'Closure' }}"> |
| 47 <instance-view app="{{ app }}" instance="{{ message }}"></instance-view> |
| 48 </template> |
| 46 <template if="{{ messageType == 'Instance' }}"> | 49 <template if="{{ messageType == 'Instance' }}"> |
| 47 <instance-view app="{{ app }}" instance="{{ message }}"></instance-view> | 50 <instance-view app="{{ app }}" instance="{{ message }}"></instance-view> |
| 48 </template> | 51 </template> |
| 49 <template if="{{ messageType == 'Array' }}"> | 52 <template if="{{ messageType == 'Array' }}"> |
| 50 <instance-view app="{{ app }}" instance="{{ message }}"></instance-view> | 53 <instance-view app="{{ app }}" instance="{{ message }}"></instance-view> |
| 51 </template> | 54 </template> |
| 52 <template if="{{ messageType == 'GrowableObjectArray' }}"> | 55 <template if="{{ messageType == 'GrowableObjectArray' }}"> |
| 53 <instance-view app="{{ app }}" instance="{{ message }}"></instance-view> | 56 <instance-view app="{{ app }}" instance="{{ message }}"></instance-view> |
| 54 </template> | 57 </template> |
| 55 <template if="{{ messageType == 'String' }}"> | 58 <template if="{{ messageType == 'String' }}"> |
| (...skipping 16 matching lines...) Expand all Loading... |
| 72 </template> | 75 </template> |
| 73 <template if="{{ messageType == 'AllocationProfile' }}"> | 76 <template if="{{ messageType == 'AllocationProfile' }}"> |
| 74 <heap-profile app="{{ app }}" profile="{{ message }}"></heap-profile> | 77 <heap-profile app="{{ app }}" profile="{{ message }}"></heap-profile> |
| 75 </template> | 78 </template> |
| 76 <template if="{{ messageType == 'CPU' }}"> | 79 <template if="{{ messageType == 'CPU' }}"> |
| 77 <json-view json="{{ message }}"></json-view> | 80 <json-view json="{{ message }}"></json-view> |
| 78 </template> | 81 </template> |
| 79 <!-- Add new views and message types in the future here. --> | 82 <!-- Add new views and message types in the future here. --> |
| 80 </template> | 83 </template> |
| 81 <script type="application/dart" src="message_viewer.dart"></script> | 84 <script type="application/dart" src="message_viewer.dart"></script> |
| 82 </polymer-element> | 85 </polymer-element> |
| OLD | NEW |