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

Unified Diff: packages/polymer/lib/polymer.dart

Issue 2312183003: Removed Polymer from Observatory deps (Closed)
Patch Set: Created 4 years, 3 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
« no previous file with comments | « packages/polymer/lib/init.dart ('k') | packages/polymer/lib/polymer.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/polymer/lib/polymer.dart
diff --git a/packages/polymer/lib/polymer.dart b/packages/polymer/lib/polymer.dart
deleted file mode 100644
index 95f1af779aece4107901f695d126fab1d8fcf409..0000000000000000000000000000000000000000
--- a/packages/polymer/lib/polymer.dart
+++ /dev/null
@@ -1,76 +0,0 @@
-// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
-// 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.
-
-/// Custom HTML tags, data binding, and templates for building
-/// structured, encapsulated, client-side web apps.
-///
-/// Polymer.dart, the next evolution of Web UI,
-/// is an in-progress Dart port of the
-/// [Polymer project](http://www.polymer-project.org/).
-/// Polymer.dart compiles to JavaScript and runs across the modern web.
-///
-/// To use polymer.dart in your application,
-/// first add a
-/// [dependency](http://pub.dartlang.org/doc/dependencies.html)
-/// to the app's pubspec.yaml file.
-/// Instead of using the open-ended `any` version specifier,
-/// we recommend using a range of version numbers, as in this example:
-///
-/// dependencies:
-/// polymer: '>=0.7.1 <0.8'
-///
-/// Then import the library into your application:
-///
-/// import 'package:polymer/polymer.dart';
-///
-/// ## Other resources
-///
-/// * [Polymer.dart homepage](http://www.dartlang.org/polymer-dart/):
-/// Example code, project status, and
-/// information about how to get started using Polymer.dart in your apps.
-///
-/// * [polymer.dart package](http://pub.dartlang.org/packages/polymer):
-/// More details, such as the current major release number.
-///
-/// * [Upgrading to Polymer.dart](http://www.dartlang.org/polymer-dart/upgrading-to-polymer-from-web-ui.html):
-/// Tips for converting your apps from Web UI to Polymer.dart.
-@HtmlImport('polymer.html')
-library polymer;
-
-import 'dart:async';
-import 'dart:collection';
-import 'dart:html';
-import 'dart:js' as js show context;
-import 'dart:js' hide context;
-
-import 'package:initialize/initialize.dart' hide run;
-import 'package:logging/logging.dart';
-import 'package:observe/observe.dart';
-import 'package:observe/src/dirty_check.dart' show dirtyCheckZone;
-import 'package:polymer_expressions/polymer_expressions.dart'
- as polymer_expressions;
-import 'package:polymer_interop/polymer_interop.dart';
-import 'package:smoke/smoke.dart' as smoke;
-import 'package:template_binding/template_binding.dart';
-import 'package:web_components/web_components.dart';
-
-import 'auto_binding.dart';
-import 'deserialize.dart' as deserialize;
-
-export 'package:initialize/initialize.dart' show initMethod;
-export 'package:observe/observe.dart';
-export 'package:observe/html.dart';
-export 'package:web_components/web_components.dart' show HtmlImport;
-export 'auto_binding.dart';
-
-part 'src/declaration.dart';
-part 'src/events.dart';
-part 'src/initializers.dart';
-part 'src/instance.dart';
-part 'src/job.dart';
-part 'src/loader.dart';
-part 'src/property_accessor.dart';
-
-/// Call [configureForDeployment] to change this to true.
-bool _deployMode = false;
« no previous file with comments | « packages/polymer/lib/init.dart ('k') | packages/polymer/lib/polymer.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698