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

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

Issue 327653003: Fix dart2js generated code for deprecated&removed resetStyleInheritance and applyAuthorStyles metho… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: ready to review Created 6 years, 6 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:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('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_ShadowRoot.darttemplate
diff --git a/tools/dom/templates/html/impl/impl_ShadowRoot.darttemplate b/tools/dom/templates/html/impl/impl_ShadowRoot.darttemplate
index 2d518ba791fa63e2fc3d9518226f6ea717fdefba..559ba25dabc04670e1c5db3149dc3fee9471bccc 100644
--- a/tools/dom/templates/html/impl/impl_ShadowRoot.darttemplate
+++ b/tools/dom/templates/html/impl/impl_ShadowRoot.darttemplate
@@ -15,7 +15,6 @@ $else
static final bool supported = true;
$endif
-$if DART_USE_BLINK
static bool _shadowRootDeprecationReported = false;
static void _shadowRootDeprecationReport() {
if (!_shadowRootDeprecationReported) {
@@ -50,21 +49,4 @@ Please remove them from your code.
void set applyAuthorStyles(bool value) {
_shadowRootDeprecationReport();
}
-$else
- @deprecated
- bool get resetStyleInheritance => this._resetStyleInheritance;
-
- @deprecated
- void set resetStyleInheritance(bool value) {
- this._resetStyleInheritance = value;
- }
-
- @deprecated
- bool get applyAuthorStyles => this._applyAuthorStyles;
-
- @deprecated
- void set applyAuthorStyles(bool value) {
- this._applyAuthorStyles = value;
- }
-$endif
}
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698