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

Unified Diff: pkg/custom_element/lib/custom_element.dart

Issue 211033008: Fix static warnings in custom_element package (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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 | « no previous file | pkg/pkg.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/custom_element/lib/custom_element.dart
diff --git a/pkg/custom_element/lib/custom_element.dart b/pkg/custom_element/lib/custom_element.dart
index 43366bce36e35834d06641ae7b4bf1ed6c0a82d1..9370cb364f6d040713adb4e6707c930efb61563a 100644
--- a/pkg/custom_element/lib/custom_element.dart
+++ b/pkg/custom_element/lib/custom_element.dart
@@ -304,12 +304,6 @@ class CustomElement implements Element {
String get tagName => host.tagName;
- String get pseudo => host.pseudo;
-
- void set pseudo(String value) {
- host.pseudo = value;
- }
-
// Note: we are not polyfilling the shadow root here. This will be fixed when
// we migrate to the JS Shadow DOM polyfills. You can still use getShadowRoot
// to retrieve a node that behaves as the shadow root when Shadow DOM is not
@@ -437,11 +431,7 @@ class CustomElement implements Element {
void appendHtml(String html) => host.appendHtml(html);
- String get regionOverset => host.regionOverset;
-
- List<Range> getRegionFlowRanges() => host.getRegionFlowRanges();
-
- void animate(List<Map> keyframes, [num duration]) =>
+ Animation animate(List<Map> keyframes, [num duration]) =>
host.animate(keyframes, duration);
// TODO(jmesserly): rename "created" to "onCreated".
@@ -481,6 +471,7 @@ class CustomElement implements Element {
Stream<Event> get onFullscreenError => host.onFullscreenError;
Stream<Event> get onPaste => host.onPaste;
Stream<Event> get onReset => host.onReset;
+ Stream<Event> get onResize => host.onResize;
Stream<Event> get onScroll => host.onScroll;
Stream<Event> get onSearch => host.onSearch;
Stream<Event> get onSelect => host.onSelect;
« no previous file with comments | « no previous file | pkg/pkg.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698