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

Unified Diff: runtime/bin/vmservice/client/lib/src/observatory_elements/class_view.html

Issue 184233007: Refactor Observatory (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: runtime/bin/vmservice/client/lib/src/observatory_elements/class_view.html
diff --git a/runtime/bin/vmservice/client/lib/src/observatory_elements/class_view.html b/runtime/bin/vmservice/client/lib/src/observatory_elements/class_view.html
deleted file mode 100644
index 65afc6c99c239aed592b7d5462fa2c97fb9230bf..0000000000000000000000000000000000000000
--- a/runtime/bin/vmservice/client/lib/src/observatory_elements/class_view.html
+++ /dev/null
@@ -1,90 +0,0 @@
-<head>
- <link rel="import" href="error_view.html">
- <link rel="import" href="field_ref.html">
- <link rel="import" href="function_ref.html">
- <link rel="import" href="instance_ref.html">
- <link rel="import" href="library_ref.html">
- <link rel="import" href="nav_bar.html">
- <link rel="import" href="observatory_element.html">
-</head>
-<polymer-element name="class-view" extends="observatory-element">
- <template>
- <nav-bar>
- <top-nav-menu></top-nav-menu>
- <isolate-nav-menu app="{{ app }}" isolate="{{ app.locationManager.currentIsolate() }}">
- </isolate-nav-menu>
- <library-nav-menu app="{{ app }}" library="{{ cls['library'] }}"></library-nav-menu>
- <class-nav-menu app="{{ app }}" cls="{{ cls }}" last="{{ true }}"></class-nav-menu>
- <nav-refresh callback="{{ refresh }}"></nav-refresh>
- </nav-bar>
-
- <div class="row">
- <div class="col-md-8 col-md-offset-2">
- <div class="panel panel-warning">
- <div class="panel-heading">
- class <strong>{{ cls['user_name'] }}</strong>
- <template if="{{ cls['super']['type'] != 'Null' }}">
- extends
- <class-ref app="{{ app }}" ref="{{ cls['super'] }}"></class-ref>
- </template>
- <library-ref app="{{ app }}" ref="{{ cls['library'] }}"></library-ref>
- </div>
- <div class="panel-body">
- <table class="table table-hover">
- <tbody>
- <tr>
- <td>Abstract</td><td>{{ cls['abstract'] }}</td>
- </tr>
- <tr>
- <td>Const</td><td>{{ cls['const'] }}</td>
- </tr>
- <tr>
- <td>Finalized</td><td>{{ cls['const'] }}</td>
- </tr>
- <tr>
- <td>Implemented</td><td>{{ cls['implemented'] }}</td>
- </tr>
- <tr>
- <td>Patch</td><td>{{ cls['patch'] }}</td>
- </tr>
- <tr>
- <td>VM Name</td><td>{{ cls['name'] }}</td>
- </tr>
- </tbody>
- </table>
- <template if="{{ cls['error'] == null }}">
- <blockquote><strong>Fields</strong></blockquote>
- <table class="table table-hover">
- <tbody>
- <tr template repeat="{{ field in cls['fields'] }}">
- <td><field-ref app="{{ app }}" ref="{{ field }}"></field-ref></td>
- <td><instance-ref app="{{ app }}" ref="{{ field['value'] }}"></instance-ref></td>
- </tr>
- </tbody>
- </table>
- <blockquote><strong>Functions</strong></blockquote>
- <table class="table table-hover">
- <thead>
- <tr>
- <th>User Name</th>
- <th>VM Name</th>
- </tr>
- </thead>
- <tbody>
- <tr template repeat="{{ function in cls['functions'] }}">
- <td><function-ref app="{{ app }}" ref="{{ function }}"></function-ref></td>
- <td><function-ref app="{{ app }}" ref="{{ function }}" internal></function-ref></td>
- </tr>
- </tbody>
- </table>
- </template>
- <template if="{{ cls['error'] != null }}">
- <error-view error_obj="{{ cls['error'] }}"></error-view>
- </template>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script type="application/dart" src="class_view.dart"></script>
-</polymer-element>

Powered by Google App Engine
This is Rietveld 408576698