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

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 666543004: Suppress new Request type in dart:html (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 2 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') | tools/dom/scripts/htmlrenamer.py » ('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 2f4a16b9f53778ae41a77bfe4424c8c10db9f6d6..8ad743a8f0a4e0eb8912b00ed0e3b21b018f1acd 100644
--- a/sdk/lib/html/dartium/html_dartium.dart
+++ b/sdk/lib/html/dartium/html_dartium.dart
@@ -426,7 +426,7 @@ final htmlBlinkMap = {
'ReadableStream': () => ReadableStream,
'Rect': () => _Rect,
'RelatedEvent': () => RelatedEvent,
- 'Request': () => Request,
+ 'Request': () => _Request,
'ResourceProgressEvent': () => ResourceProgressEvent,
'Response': () => _Response,
'Screen': () => Screen,
@@ -14639,7 +14639,7 @@ class FetchEvent extends Event {
@DomName('FetchEvent.request')
@DocsEditable()
@Experimental() // untriaged
- Request get request => _blink.BlinkFetchEvent.request_Getter(this);
+ _Request get request => _blink.BlinkFetchEvent.request_Getter(this);
@DomName('FetchEvent.respondWith')
@DocsEditable()
@@ -26043,64 +26043,6 @@ class RelatedEvent extends Event {
// WARNING: Do not edit - generated code.
-@DocsEditable()
-@DomName('Request')
-@Experimental() // untriaged
-class Request extends NativeFieldWrapperClass2 {
- // To suppress missing implicit constructor warnings.
- factory Request._() { throw new UnsupportedError("Not supported"); }
-
- @DomName('Request.Request')
- @DocsEditable()
- factory Request(input, [Map requestInitDict]) {
- if ((input is String || input == null) && requestInitDict == null) {
- return _blink.BlinkRequest.constructorCallback_DOMString(input);
- }
- if ((requestInitDict is Map || requestInitDict == null) && (input is String || input == null)) {
- return _blink.BlinkRequest.constructorCallback_DOMString_Dictionary(input, requestInitDict);
- }
- if ((input is Request || input == null) && requestInitDict == null) {
- return _blink.BlinkRequest.constructorCallback_Request(input);
- }
- if ((requestInitDict is Map || requestInitDict == null) && (input is Request || input == null)) {
- return _blink.BlinkRequest.constructorCallback_Request_Dictionary(input, requestInitDict);
- }
- throw new ArgumentError("Incorrect number or type of arguments");
- }
-
- @DomName('Request.credentials')
- @DocsEditable()
- @Experimental() // untriaged
- String get credentials => _blink.BlinkRequest.credentials_Getter(this);
-
- @DomName('Request.headers')
- @DocsEditable()
- @Experimental() // untriaged
- Headers get headers => _blink.BlinkRequest.headers_Getter(this);
-
- @DomName('Request.mode')
- @DocsEditable()
- @Experimental() // untriaged
- String get mode => _blink.BlinkRequest.mode_Getter(this);
-
- @DomName('Request.referrer')
- @DocsEditable()
- @Experimental() // untriaged
- String get referrer => _blink.BlinkRequest.referrer_Getter(this);
-
- @DomName('Request.url')
- @DocsEditable()
- @Experimental() // untriaged
- String get url => _blink.BlinkRequest.url_Getter(this);
-
-}
-// Copyright (c) 2012, 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.
-
-// WARNING: Do not edit - generated code.
-
-
@DomName('RequestAnimationFrameCallback')
typedef void RequestAnimationFrameCallback(num highResTime);
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -35671,6 +35613,64 @@ abstract class _Rect extends NativeFieldWrapperClass2 {
@DocsEditable()
+@DomName('Request')
+@Experimental() // untriaged
+class _Request extends NativeFieldWrapperClass2 {
+ // To suppress missing implicit constructor warnings.
+ factory _Request._() { throw new UnsupportedError("Not supported"); }
+
+ @DomName('Request.Request')
+ @DocsEditable()
+ factory _Request(input, [Map requestInitDict]) {
+ if ((input is String || input == null) && requestInitDict == null) {
+ return _blink.BlinkRequest.constructorCallback_DOMString(input);
+ }
+ if ((requestInitDict is Map || requestInitDict == null) && (input is String || input == null)) {
+ return _blink.BlinkRequest.constructorCallback_DOMString_Dictionary(input, requestInitDict);
+ }
+ if ((input is _Request || input == null) && requestInitDict == null) {
+ return _blink.BlinkRequest.constructorCallback_Request(input);
+ }
+ if ((requestInitDict is Map || requestInitDict == null) && (input is _Request || input == null)) {
+ return _blink.BlinkRequest.constructorCallback_Request_Dictionary(input, requestInitDict);
+ }
+ throw new ArgumentError("Incorrect number or type of arguments");
+ }
+
+ @DomName('Request.credentials')
+ @DocsEditable()
+ @Experimental() // untriaged
+ String get credentials => _blink.BlinkRequest.credentials_Getter(this);
+
+ @DomName('Request.headers')
+ @DocsEditable()
+ @Experimental() // untriaged
+ Headers get headers => _blink.BlinkRequest.headers_Getter(this);
+
+ @DomName('Request.mode')
+ @DocsEditable()
+ @Experimental() // untriaged
+ String get mode => _blink.BlinkRequest.mode_Getter(this);
+
+ @DomName('Request.referrer')
+ @DocsEditable()
+ @Experimental() // untriaged
+ String get referrer => _blink.BlinkRequest.referrer_Getter(this);
+
+ @DomName('Request.url')
+ @DocsEditable()
+ @Experimental() // untriaged
+ String get url => _blink.BlinkRequest.url_Getter(this);
+
+}
+// Copyright (c) 2012, 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.
+
+// WARNING: Do not edit - generated code.
+
+
+@DocsEditable()
@DomName('Response')
@Experimental() // untriaged
abstract class _Response extends NativeFieldWrapperClass2 {
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | tools/dom/scripts/htmlrenamer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698