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

Issue 26051002: Updating Polymer to derive from custom elements. (Closed)

Created:
7 years, 2 months ago by blois
Modified:
7 years, 2 months ago
CC:
reviews_dartlang.org
Visibility:
Public.

Description

Updating Polymer to derive from custom elements. BUG= R=jmesserly@google.com, sigmund@google.com Committed: https://code.google.com/p/dart/source/detail?r=28617

Patch Set 1 : #

Total comments: 22

Patch Set 2 : #

Total comments: 2

Patch Set 3 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+218 lines, -139 lines) Patch
M editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/generator/webui/clickcounter.dart View 1 2 1 chunk +4 lines, -1 line 0 comments Download
M pkg/polymer/lib/polymer.dart View 2 chunks +0 lines, -2 lines 0 comments Download
M pkg/polymer/lib/src/build/polyfill_injector.dart View 4 chunks +11 lines, -0 lines 0 comments Download
M pkg/polymer/lib/src/declaration.dart View 1 2 15 chunks +43 lines, -55 lines 0 comments Download
M pkg/polymer/lib/src/instance.dart View 1 2 18 chunks +60 lines, -60 lines 0 comments Download
M pkg/polymer/lib/src/loader.dart View 1 2 3 chunks +22 lines, -2 lines 0 comments Download
M pkg/polymer/test/attr_deserialize_test.dart View 1 1 chunk +2 lines, -0 lines 0 comments Download
M pkg/polymer/test/attr_mustache_test.dart View 1 3 chunks +5 lines, -1 line 0 comments Download
M pkg/polymer/test/event_path_test.html View 1 4 chunks +12 lines, -4 lines 0 comments Download
M pkg/polymer/test/events_test.html View 1 2 chunks +4 lines, -0 lines 0 comments Download
M pkg/polymer/test/instance_attrs_test.dart View 1 chunk +1 line, -1 line 0 comments Download
M pkg/polymer/test/prop_attr_reflection_test.dart View 1 2 chunks +6 lines, -0 lines 0 comments Download
M pkg/polymer/test/publish_attributes_test.dart View 1 1 chunk +8 lines, -0 lines 0 comments Download
M pkg/polymer/test/take_attributes_test.dart View 1 2 5 chunks +15 lines, -1 line 0 comments Download
M samples/third_party/todomvc/web/app.dart View 1 2 1 chunk +4 lines, -3 lines 0 comments Download
M samples/third_party/todomvc/web/editable_label.dart View 1 2 chunks +5 lines, -1 line 0 comments Download
M samples/third_party/todomvc/web/router_options.dart View 1 2 2 chunks +8 lines, -4 lines 0 comments Download
M samples/third_party/todomvc/web/todo_row.dart View 1 2 1 chunk +8 lines, -4 lines 0 comments Download

Messages

Total messages: 12 (0 generated)
blois
Could you guys start taking a look at this? It's working for TodoMVC but is ...
7 years, 2 months ago (2013-10-10 17:19:02 UTC) #1
Siggi Cherem (dart-lang)
This is looking great! Minor comments below https://codereview.chromium.org/26051002/diff/23001/pkg/polymer/lib/src/declaration.dart File pkg/polymer/lib/src/declaration.dart (left): https://codereview.chromium.org/26051002/diff/23001/pkg/polymer/lib/src/declaration.dart#oldcode15 pkg/polymer/lib/src/declaration.dart:15: void registerPolymerElement(String ...
7 years, 2 months ago (2013-10-10 22:25:50 UTC) #2
Jennifer Messerly
https://codereview.chromium.org/26051002/diff/23001/pkg/polymer/lib/src/declaration.dart File pkg/polymer/lib/src/declaration.dart (left): https://codereview.chromium.org/26051002/diff/23001/pkg/polymer/lib/src/declaration.dart#oldcode15 pkg/polymer/lib/src/declaration.dart:15: void registerPolymerElement(String localName, PolymerElement create()) { yay https://codereview.chromium.org/26051002/diff/23001/pkg/polymer/lib/src/declaration.dart File ...
7 years, 2 months ago (2013-10-10 22:35:16 UTC) #3
Siggi Cherem (dart-lang)
https://codereview.chromium.org/26051002/diff/23001/pkg/polymer/lib/src/declaration.dart File pkg/polymer/lib/src/declaration.dart (right): https://codereview.chromium.org/26051002/diff/23001/pkg/polymer/lib/src/declaration.dart#newcode74 pkg/polymer/lib/src/declaration.dart:74: final template = query('template'); I was just browsing through ...
7 years, 2 months ago (2013-10-10 23:56:14 UTC) #4
blois
Tests are passing now, but waiting on a fix from Stephen to remove the type ...
7 years, 2 months ago (2013-10-11 22:40:12 UTC) #5
Siggi Cherem (dart-lang)
https://codereview.chromium.org/26051002/diff/23001/pkg/polymer/lib/src/declaration.dart File pkg/polymer/lib/src/declaration.dart (left): https://codereview.chromium.org/26051002/diff/23001/pkg/polymer/lib/src/declaration.dart#oldcode15 pkg/polymer/lib/src/declaration.dart:15: void registerPolymerElement(String localName, PolymerElement create()) { On 2013/10/11 22:40:12, ...
7 years, 2 months ago (2013-10-11 23:14:49 UTC) #6
Siggi Cherem (dart-lang)
lgtm with fixing the uses of @CustomTag in the tests (looks like most tests don't ...
7 years, 2 months ago (2013-10-14 16:57:59 UTC) #7
Siggi Cherem (dart-lang)
one more question below https://codereview.chromium.org/26051002/diff/23001/pkg/polymer/lib/src/loader.dart File pkg/polymer/lib/src/loader.dart (right): https://codereview.chromium.org/26051002/diff/23001/pkg/polymer/lib/src/loader.dart#newcode94 pkg/polymer/lib/src/loader.dart:94: Polymer.register(meta.tagName, meta.type); On 2013/10/11 22:40:12, ...
7 years, 2 months ago (2013-10-14 17:02:51 UTC) #8
Jennifer Messerly
lgtm once CustomTag.type gone :)
7 years, 2 months ago (2013-10-14 20:34:16 UTC) #9
Jennifer Messerly
On 2013/10/14 20:34:16, John Messerly wrote: > lgtm once CustomTag.type gone :) oh and +1 ...
7 years, 2 months ago (2013-10-14 20:34:40 UTC) #10
blois
On 2013/10/14 20:34:40, John Messerly wrote: > On 2013/10/14 20:34:16, John Messerly wrote: > > ...
7 years, 2 months ago (2013-10-14 22:09:17 UTC) #11
blois
7 years, 2 months ago (2013-10-14 22:47:12 UTC) #12
Message was sent while issue was closed.
Committed patchset #3 manually as r28617 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698