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

Unified Diff: tools/dom/templates/html/impl/impl_DOMException.darttemplate

Issue 1416043008: Hide implementation members in dart:html, dart:js and related libraries (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/dom/templates/html/dartium/html_dartium.darttemplate ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dom/templates/html/impl/impl_DOMException.darttemplate
diff --git a/tools/dom/templates/html/impl/impl_DOMException.darttemplate b/tools/dom/templates/html/impl/impl_DOMException.darttemplate
index bf5f0b6a6383ca9c9229d3de593a888f4b66636f..9bbae84381d3791ca1f042198da02b40b5ef53ef 100644
--- a/tools/dom/templates/html/impl/impl_DOMException.darttemplate
+++ b/tools/dom/templates/html/impl/impl_DOMException.darttemplate
@@ -52,14 +52,17 @@ $if JSINTEROP
return new DomException._internalWrap();
}
+ @Deprecated("Internal Use Only")
Alan Knight 2015/11/02 17:57:21 This field should just be removed, it's shadowing
js.JsObject blink_jsObject;
factory DomException._internalWrap() {
return new DomException.internal_();
}
+ @Deprecated("Internal Use Only")
DomException.internal_() { }
+ @Deprecated("Internal Use Only")
DomException.jsInterop(String m) {
var name_index = m.indexOf(': ');
if (name_index < 0) {
« no previous file with comments | « tools/dom/templates/html/dartium/html_dartium.darttemplate ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698