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

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
« no previous file with comments | « lib/html/dart2js/html_dart2js.dart ('k') | lib/html/idl/dart/dart.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/dartium/html_dartium.dart
diff --git a/lib/html/dartium/html_dartium.dart b/lib/html/dartium/html_dartium.dart
index e0673010da7fadf0185b6870cbdaa58bd562031b..1cd334cb44ea5948a4656853822c21bc9a235bd2 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
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
« no previous file with comments | « lib/html/dart2js/html_dart2js.dart ('k') | lib/html/idl/dart/dart.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698