Chromium Code Reviews| Index: runtime/bin/vmservice/client/lib/src/observatory_elements/class_ref.dart |
| diff --git a/pkg/polymer/example/canonicalization/lib/b.dart b/runtime/bin/vmservice/client/lib/src/observatory_elements/class_ref.dart |
| similarity index 59% |
| copy from pkg/polymer/example/canonicalization/lib/b.dart |
| copy to runtime/bin/vmservice/client/lib/src/observatory_elements/class_ref.dart |
| index 0a3a29d87c9a9525ff29eb0b822465756e0d7133..3a49ec8b08a1014c9945a532968f81c28e507767 100644 |
| --- a/pkg/polymer/example/canonicalization/lib/b.dart |
| +++ b/runtime/bin/vmservice/client/lib/src/observatory_elements/class_ref.dart |
| @@ -2,15 +2,12 @@ |
| // for details. All rights reserved. Use of this source code is governed by a |
| // BSD-style license that can be found in the LICENSE file. |
| -library canonicalization.b; |
| +library class_ref_element; |
| import 'package:polymer/polymer.dart'; |
| -import 'package:canonicalization/c.dart'; |
| -import 'd.dart'; |
| +import 'service_ref.dart'; |
| -int b = 0; |
| -@initMethod _init() { |
| - b++; |
| - c++; |
| - d++; |
|
turnidge
2013/12/19 20:39:29
What's this stuff?
Cutch
2013/12/19 21:53:58
git does weird things for new files.
|
| +@CustomTag('class-ref') |
| +class ClassRefElement extends ServiceRefElement { |
| + ClassRefElement.created() : super.created(); |
| } |