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

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

Issue 11033024: Get rid of webkit renames. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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
Index: lib/html/dartium/html_dartium.dart
diff --git a/lib/html/dartium/html_dartium.dart b/lib/html/dartium/html_dartium.dart
index 129715eae1eee1981852ec036d4d449860367493..48d94a0086417e4f844f2676fbd4594b656eb7ce 100644
--- a/lib/html/dartium/html_dartium.dart
+++ b/lib/html/dartium/html_dartium.dart
@@ -9578,7 +9578,7 @@ class _DOMErrorImpl extends NativeFieldWrapperClass1 implements DOMError {
// WARNING: Do not edit - generated code.
-/// @domName DOMException
+/// @domName DOMCoreException
vsm 2012/10/04 14:28:11 DBC - note, DOMException is the MDN type, not DOMC
podivilov 2012/10/04 16:15:46 We have incorrect dom names for a bunch of interfa
abstract class DOMException {
static const int ABORT_ERR = 20;
@@ -9631,16 +9631,16 @@ abstract class DOMException {
static const int WRONG_DOCUMENT_ERR = 4;
- /** @domName DOMException.code */
+ /** @domName DOMCoreException.code */
abstract int get code;
- /** @domName DOMException.message */
+ /** @domName DOMCoreException.message */
abstract String get message;
- /** @domName DOMException.name */
+ /** @domName DOMCoreException.name */
abstract String get name;
- /** @domName DOMException.toString */
+ /** @domName DOMCoreException.toString */
String toString();
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -9649,15 +9649,15 @@ abstract class DOMException {
// WARNING: Do not edit - generated code.
-class _DOMExceptionImpl extends NativeFieldWrapperClass1 implements DOMException {
+class _DOMCoreExceptionImpl extends NativeFieldWrapperClass1 implements DOMException {
- int get code native "DOMException_code_Getter";
+ int get code native "DOMCoreException_code_Getter";
- String get message native "DOMException_message_Getter";
+ String get message native "DOMCoreException_message_Getter";
- String get name native "DOMException_name_Getter";
+ String get name native "DOMCoreException_name_Getter";
- String toString() native "DOMException_toString_Callback";
+ String toString() native "DOMCoreException_toString_Callback";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file

Powered by Google App Engine
This is Rietveld 408576698