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

Issue 17063007: Making all DOM types abstract and removing superfluous Dartium constructors. (Closed)

Created:
7 years, 6 months ago by blois
Modified:
7 years, 6 months ago
Reviewers:
vsm
CC:
reviews_dartlang.org
Visibility:
Public.

Description

Making all DOM types abstract and removing superfluous Dartium constructors. Adding factory constructors to all classes to suppress missing generative constructor warnings. Adding a throw to Dartium's base DOM class to prevent construction of native objects. This also includes the changes necessary to make all DOM types abstract, but I'm running into a dart2js issue which is preventing that. BUG= R=vsm@google.com Committed: https://code.google.com/p/dart/source/detail?r=24241

Patch Set 1 : #

Total comments: 2
Unified diffs Side-by-side diffs Delta from patch set Stats (+2401 lines, -732 lines) Patch
M sdk/lib/html/dart2js/html_dart2js.dart View 344 chunks +689 lines, -26 lines 0 comments Download
M sdk/lib/html/dartium/html_dartium.dart View 346 chunks +690 lines, -358 lines 0 comments Download
M sdk/lib/html/dartium/nativewrappers.dart View 1 chunk +4 lines, -0 lines 2 comments Download
M sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart View 12 chunks +26 lines, -2 lines 0 comments Download
M sdk/lib/indexed_db/dartium/indexed_db_dartium.dart View 12 chunks +24 lines, -12 lines 0 comments Download
M sdk/lib/svg/dart2js/svg_dart2js.dart View 152 chunks +303 lines, -1 line 0 comments Download
M sdk/lib/svg/dartium/svg_dartium.dart View 152 chunks +303 lines, -152 lines 0 comments Download
M sdk/lib/web_audio/dart2js/web_audio_dart2js.dart View 27 chunks +54 lines, -0 lines 0 comments Download
M sdk/lib/web_audio/dartium/web_audio_dartium.dart View 27 chunks +54 lines, -27 lines 0 comments Download
M sdk/lib/web_gl/dart2js/web_gl_dart2js.dart View 30 chunks +60 lines, -0 lines 0 comments Download
M sdk/lib/web_gl/dartium/web_gl_dartium.dart View 30 chunks +60 lines, -30 lines 0 comments Download
M sdk/lib/web_sql/dart2js/web_sql_dart2js.dart View 7 chunks +14 lines, -0 lines 0 comments Download
M sdk/lib/web_sql/dartium/web_sql_dartium.dart View 7 chunks +14 lines, -7 lines 0 comments Download
M tools/dom/scripts/htmldartgenerator.py View 1 chunk +8 lines, -1 line 0 comments Download
M tools/dom/scripts/systemnative.py View 1 chunk +0 lines, -15 lines 0 comments Download
M tools/dom/templates/html/dart2js/impl_Console.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/dart2js/impl_KeyboardEvent.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/dart2js/impl_MouseEvent.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/dart2js/impl_RTCIceCandidate.darttemplate View 1 chunk +2 lines, -2 lines 0 comments Download
M tools/dom/templates/html/dart2js/impl_RTCSessionDescription.darttemplate View 1 chunk +3 lines, -3 lines 0 comments Download
M tools/dom/templates/html/dart2js/impl_SpeechRecognition.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/dart2js/impl_URL.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/dartium/impl_KeyboardEvent.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/dartium/impl_MouseEvent.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_AudioContext.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_Blob.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_CSSStyleDeclaration.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_CanvasRenderingContext2D.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_ClientRect.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_CompositionEvent.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_CustomEvent.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_DOMException.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_DeviceOrientationEvent.darttemplate View 1 chunk +1 line, -2 lines 0 comments Download
M tools/dom/templates/html/impl/impl_DirectoryEntry.darttemplate View 2 chunks +4 lines, -4 lines 0 comments Download
M tools/dom/templates/html/impl/impl_Document.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_DocumentFragment.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_Event.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_EventSource.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_EventTarget.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_Geolocation.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_HTMLCanvasElement.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_HTMLDocument.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_HTMLImageElement.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_HTMLInputElement.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_HTMLSelectElement.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_HTMLTableElement.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_HTMLTableRowElement.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_HTMLTableSectionElement.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_HTMLTemplateElement.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_HTMLVideoElement.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_HashChangeEvent.darttemplate View 1 chunk +1 line, -2 lines 0 comments Download
M tools/dom/templates/html/impl/impl_History.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_IDBCursor.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_IDBDatabase.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_IDBFactory.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_IDBIndex.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_IDBKeyRange.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_IDBObjectStore.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_IDBTransaction.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_ImageData.darttemplate View 1 chunk +1 line, -2 lines 0 comments Download
M tools/dom/templates/html/impl/impl_MediaStream.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_MessageEvent.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_MutationEvent.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_MutationObserver.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_Navigator.darttemplate View 2 chunks +8 lines, -8 lines 0 comments Download
M tools/dom/templates/html/impl/impl_Node.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_NodeIterator.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_Notification.darttemplate View 1 chunk +2 lines, -2 lines 0 comments Download
M tools/dom/templates/html/impl/impl_RTCPeerConnection.darttemplate View 2 chunks +2 lines, -2 lines 0 comments Download
M tools/dom/templates/html/impl/impl_RadioNodeList.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_Range.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_SVGColor.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_SVGElement.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_SVGSVGElement.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_Screen.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_ScriptProcessorNode.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_ShadowRoot.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_Storage.darttemplate View 1 chunk +2 lines, -2 lines 0 comments Download
M tools/dom/templates/html/impl/impl_StorageEvent.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_StorageInfo.darttemplate View 2 chunks +4 lines, -4 lines 0 comments Download
M tools/dom/templates/html/impl/impl_Text.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_TextEvent.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_Touch.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_TouchEvent.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_TouchList.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_TreeWalker.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_UIEvent.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_WheelEvent.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_Window.darttemplate View 2 chunks +5 lines, -5 lines 0 comments Download
M tools/dom/templates/html/impl/impl_XMLHttpRequest.darttemplate View 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 3 (0 generated)
blois
https://codereview.chromium.org/17063007/diff/2001/sdk/lib/html/dartium/nativewrappers.dart File sdk/lib/html/dartium/nativewrappers.dart (right): https://codereview.chromium.org/17063007/diff/2001/sdk/lib/html/dartium/nativewrappers.dart#newcode8 sdk/lib/html/dartium/nativewrappers.dart:8: NativeFieldWrapperClass1() { Does this need to be a default ...
7 years, 6 months ago (2013-06-19 23:16:19 UTC) #1
vsm
lgtm https://codereview.chromium.org/17063007/diff/2001/sdk/lib/html/dartium/nativewrappers.dart File sdk/lib/html/dartium/nativewrappers.dart (right): https://codereview.chromium.org/17063007/diff/2001/sdk/lib/html/dartium/nativewrappers.dart#newcode8 sdk/lib/html/dartium/nativewrappers.dart:8: NativeFieldWrapperClass1() { On 2013/06/19 23:16:19, blois wrote: > ...
7 years, 6 months ago (2013-06-20 15:19:00 UTC) #2
blois
7 years, 6 months ago (2013-06-20 17:32:08 UTC) #3
Message was sent while issue was closed.
Committed patchset #1 manually as r24241 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698