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

Unified Diff: sdk/lib/html/dartium/html_dartium.dart

Side-by-side diff isn't available for this file because of its large size.
Issue 12207205: Revert "Remove deprecated mappedBy." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 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:
Download patch
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | sdk/lib/html/html_common/filtered_element_list.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dartium/html_dartium.dart
diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart
index 8a3b951ff14e861b77c0bb03d3570c58b1af38e2..4769542950989c0487be00a94eea1a97057681b8 100644
--- a/sdk/lib/html/dartium/html_dartium.dart
+++ b/sdk/lib/html/dartium/html_dartium.dart
@@ -7898,6 +7898,9 @@ class DomMimeTypeArray extends NativeFieldWrapperClass1 implements List<DomMimeT
Iterable map(f(DomMimeType element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(DomMimeType element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<DomMimeType> where(bool f(DomMimeType element)) =>
IterableMixinWorkaround.where(this, f);
@@ -8166,6 +8169,9 @@ class DomPluginArray extends NativeFieldWrapperClass1 implements List<DomPlugin>
Iterable map(f(DomPlugin element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(DomPlugin element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<DomPlugin> where(bool f(DomPlugin element)) =>
IterableMixinWorkaround.where(this, f);
@@ -8552,6 +8558,9 @@ class DomStringList extends NativeFieldWrapperClass1 implements List<String> {
Iterable map(f(String element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(String element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<String> where(bool f(String element)) =>
IterableMixinWorkaround.where(this, f);
@@ -8833,6 +8842,10 @@ class _ChildrenElementList implements List {
return IterableMixinWorkaround.mapList(this, f);
}
+ List mappedBy(f(Element element)) {
+ return IterableMixinWorkaround.mappedByList(this, f);
+ }
+
Iterable<Element> where(bool f(Element element)) {
return IterableMixinWorkaround.where(this, f);
}
@@ -9054,6 +9067,10 @@ class _FrozenElementList implements List {
return IterableMixinWorkaround.mapList(this, f);
}
+ List mappedBy(f(Element element)) {
+ return IterableMixinWorkaround.mappedByList(this, f);
+ }
+
Iterable<Element> where(bool f(Element element)) {
return IterableMixinWorkaround.where(this, f);
}
@@ -11379,6 +11396,9 @@ class FileList extends NativeFieldWrapperClass1 implements List<File> {
Iterable map(f(File element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(File element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<File> where(bool f(File element)) =>
IterableMixinWorkaround.where(this, f);
@@ -11990,6 +12010,9 @@ class Float32Array extends ArrayBufferView implements List<num> {
Iterable map(f(num element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(num element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<num> where(bool f(num element)) =>
IterableMixinWorkaround.where(this, f);
@@ -12225,6 +12248,9 @@ class Float64Array extends ArrayBufferView implements List<num> {
Iterable map(f(num element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(num element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<num> where(bool f(num element)) =>
IterableMixinWorkaround.where(this, f);
@@ -12820,6 +12846,9 @@ class HtmlAllCollection extends NativeFieldWrapperClass1 implements List<Node> {
Iterable map(f(Node element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(Node element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<Node> where(bool f(Node element)) =>
IterableMixinWorkaround.where(this, f);
@@ -13029,6 +13058,9 @@ class HtmlCollection extends NativeFieldWrapperClass1 implements List<Node> {
Iterable map(f(Node element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(Node element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<Node> where(bool f(Node element)) =>
IterableMixinWorkaround.where(this, f);
@@ -15387,6 +15419,9 @@ class Int16Array extends ArrayBufferView implements List<int> {
Iterable map(f(int element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(int element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<int> where(bool f(int element)) =>
IterableMixinWorkaround.where(this, f);
@@ -15622,6 +15657,9 @@ class Int32Array extends ArrayBufferView implements List<int> {
Iterable map(f(int element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(int element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<int> where(bool f(int element)) =>
IterableMixinWorkaround.where(this, f);
@@ -15857,6 +15895,9 @@ class Int8Array extends ArrayBufferView implements List<int> {
Iterable map(f(int element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(int element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<int> where(bool f(int element)) =>
IterableMixinWorkaround.where(this, f);
@@ -18639,6 +18680,10 @@ class _ChildNodeListLazy implements List {
return IterableMixinWorkaround.mapList(this, f);
}
+ List mappedBy(f(Node element)) {
+ return IterableMixinWorkaround.mappedByList(this, f);
+ }
+
Iterable<Node> where(bool f(Node element)) {
return IterableMixinWorkaround.where(this, f);
}
@@ -19027,6 +19072,9 @@ class NodeList extends NativeFieldWrapperClass1 implements List<Node> {
Iterable map(f(Node element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(Node element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<Node> where(bool f(Node element)) =>
IterableMixinWorkaround.where(this, f);
@@ -21649,6 +21697,9 @@ class SourceBufferList extends EventTarget implements List<SourceBuffer> {
Iterable map(f(SourceBuffer element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(SourceBuffer element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<SourceBuffer> where(bool f(SourceBuffer element)) =>
IterableMixinWorkaround.where(this, f);
@@ -21967,6 +22018,9 @@ class SpeechGrammarList extends NativeFieldWrapperClass1 implements List<SpeechG
Iterable map(f(SpeechGrammar element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(SpeechGrammar element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<SpeechGrammar> where(bool f(SpeechGrammar element)) =>
IterableMixinWorkaround.where(this, f);
@@ -22622,6 +22676,9 @@ class SqlResultSetRowList extends NativeFieldWrapperClass1 implements List<Map>
Iterable map(f(Map element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(Map element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<Map> where(bool f(Map element)) =>
IterableMixinWorkaround.where(this, f);
@@ -23941,6 +23998,9 @@ class TextTrackCueList extends NativeFieldWrapperClass1 implements List<TextTrac
Iterable map(f(TextTrackCue element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(TextTrackCue element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<TextTrackCue> where(bool f(TextTrackCue element)) =>
IterableMixinWorkaround.where(this, f);
@@ -24150,6 +24210,9 @@ class TextTrackList extends EventTarget implements List<TextTrack> {
Iterable map(f(TextTrack element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(TextTrack element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<TextTrack> where(bool f(TextTrack element)) =>
IterableMixinWorkaround.where(this, f);
@@ -24566,6 +24629,9 @@ class TouchList extends NativeFieldWrapperClass1 implements List<Touch> {
Iterable map(f(Touch element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(Touch element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<Touch> where(bool f(Touch element)) =>
IterableMixinWorkaround.where(this, f);
@@ -25057,6 +25123,9 @@ class Uint16Array extends ArrayBufferView implements List<int> {
Iterable map(f(int element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(int element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<int> where(bool f(int element)) =>
IterableMixinWorkaround.where(this, f);
@@ -25292,6 +25361,9 @@ class Uint32Array extends ArrayBufferView implements List<int> {
Iterable map(f(int element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(int element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<int> where(bool f(int element)) =>
IterableMixinWorkaround.where(this, f);
@@ -25527,6 +25599,9 @@ class Uint8Array extends ArrayBufferView implements List<int> {
Iterable map(f(int element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(int element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<int> where(bool f(int element)) =>
IterableMixinWorkaround.where(this, f);
@@ -25760,6 +25835,9 @@ class Uint8ClampedArray extends Uint8Array implements List<int> {
Iterable map(f(int element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(int element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<int> where(bool f(int element)) =>
IterableMixinWorkaround.where(this, f);
@@ -29435,6 +29513,9 @@ class _ClientRectList extends NativeFieldWrapperClass1 implements List<ClientRec
Iterable map(f(ClientRect element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(ClientRect element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<ClientRect> where(bool f(ClientRect element)) =>
IterableMixinWorkaround.where(this, f);
@@ -29636,6 +29717,9 @@ class _CssRuleList extends NativeFieldWrapperClass1 implements List<CssRule> {
Iterable map(f(CssRule element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(CssRule element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<CssRule> where(bool f(CssRule element)) =>
IterableMixinWorkaround.where(this, f);
@@ -29837,6 +29921,9 @@ class _CssValueList extends CssValue implements List<CssValue> {
Iterable map(f(CssValue element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(CssValue element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<CssValue> where(bool f(CssValue element)) =>
IterableMixinWorkaround.where(this, f);
@@ -30181,6 +30268,9 @@ class _EntryArray extends NativeFieldWrapperClass1 implements List<Entry> {
Iterable map(f(Entry element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(Entry element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<Entry> where(bool f(Entry element)) =>
IterableMixinWorkaround.where(this, f);
@@ -30382,6 +30472,9 @@ class _EntryArraySync extends NativeFieldWrapperClass1 implements List<EntrySync
Iterable map(f(EntrySync element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(EntrySync element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<EntrySync> where(bool f(EntrySync element)) =>
IterableMixinWorkaround.where(this, f);
@@ -30583,6 +30676,9 @@ class _GamepadList extends NativeFieldWrapperClass1 implements List<Gamepad> {
Iterable map(f(Gamepad element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(Gamepad element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<Gamepad> where(bool f(Gamepad element)) =>
IterableMixinWorkaround.where(this, f);
@@ -30875,6 +30971,9 @@ class _MediaStreamList extends NativeFieldWrapperClass1 implements List<MediaStr
Iterable map(f(MediaStream element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(MediaStream element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<MediaStream> where(bool f(MediaStream element)) =>
IterableMixinWorkaround.where(this, f);
@@ -31076,6 +31175,9 @@ class _NamedNodeMap extends NativeFieldWrapperClass1 implements List<Node> {
Iterable map(f(Node element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(Node element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<Node> where(bool f(Node element)) =>
IterableMixinWorkaround.where(this, f);
@@ -31301,6 +31403,9 @@ class _SpeechInputResultList extends NativeFieldWrapperClass1 implements List<Sp
Iterable map(f(SpeechInputResult element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(SpeechInputResult element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<SpeechInputResult> where(bool f(SpeechInputResult element)) =>
IterableMixinWorkaround.where(this, f);
@@ -31502,6 +31607,9 @@ class _SpeechRecognitionResultList extends NativeFieldWrapperClass1 implements L
Iterable map(f(SpeechRecognitionResult element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(SpeechRecognitionResult element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<SpeechRecognitionResult> where(bool f(SpeechRecognitionResult element)) =>
IterableMixinWorkaround.where(this, f);
@@ -31703,6 +31811,9 @@ class _StyleSheetList extends NativeFieldWrapperClass1 implements List<StyleShee
Iterable map(f(StyleSheet element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(StyleSheet element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<StyleSheet> where(bool f(StyleSheet element)) =>
IterableMixinWorkaround.where(this, f);
@@ -32277,6 +32388,8 @@ abstract class CssClassSet implements Set<String> {
Iterable map(f(String element)) => readClasses().map(f);
+ Iterable mappedBy(f(String element)) => readClasses().mappedBy(f);
+
Iterable<String> where(bool f(String element)) => readClasses().where(f);
Iterable expand(Iterable f(String element)) => readClasses.expand(f);
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | sdk/lib/html/html_common/filtered_element_list.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698