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

Unified Diff: runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/action_link.html

Issue 443713004: Rename vmservice/client to vmservice/observatory to match package name. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 4 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/deployed/web/packages/observatory/src/elements/action_link.html
===================================================================
--- runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/action_link.html (revision 38989)
+++ runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/action_link.html (working copy)
@@ -1,36 +0,0 @@
-<link rel="import" href="../../../../packages/polymer/polymer.html">
-<link rel="import" href="instance_ref.html">
-
-<polymer-element name="action-link">
- <template>
- <style>
- .idle {
- color: #0489c3;
- cursor: pointer;
- text-decoration: none;
- }
- .idle:hover {
- text-decoration: underline;
- }
- .busy {
- color: #aaa;
- cursor: wait;
- text-decoration: none;
- }
- </style>
-
- <template if="{{ busy }}">
- <span class="busy">[{{ label }}]</span>
- </template>
- <template if="{{ !busy }}">
- <template if="{{ color == null }}">
- <span class="idle"><a on-click="{{ doAction }}">[{{ label }}]</a></span>
- </template>
- <template if="{{ color != null }}">
- <span class="idle" style="color:{{ color }}"><a on-click="{{ doAction }}">[{{ label }}]</a></span>
- </template>
- </template>
- </template>
-</polymer-element>
-
-<script type="application/dart" src="action_link.dart"></script>

Powered by Google App Engine
This is Rietveld 408576698