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

Unified Diff: sdk/lib/web_sql/dartium/web_sql_dartium.dart

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
Index: sdk/lib/web_sql/dartium/web_sql_dartium.dart
diff --git a/sdk/lib/web_sql/dartium/web_sql_dartium.dart b/sdk/lib/web_sql/dartium/web_sql_dartium.dart
index 3b7d758e1527151634e0f1f28dadea6faa94aa12..c7e6c935f4bc19f718e8dcc99ee76041ca3adc4a 100644
--- a/sdk/lib/web_sql/dartium/web_sql_dartium.dart
+++ b/sdk/lib/web_sql/dartium/web_sql_dartium.dart
@@ -118,6 +118,7 @@ class SqlDatabase extends DartHtmlDomObject {
return new SqlDatabase.internal_();
}
+ @Deprecated("Internal Use Only")
SqlDatabase.internal_() { }
bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
@@ -198,6 +199,7 @@ class SqlError extends DartHtmlDomObject {
return new SqlError.internal_();
}
+ @Deprecated("Internal Use Only")
SqlError.internal_() { }
bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
@@ -268,6 +270,7 @@ class SqlResultSet extends DartHtmlDomObject {
return new SqlResultSet.internal_();
}
+ @Deprecated("Internal Use Only")
SqlResultSet.internal_() { }
bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
@@ -310,6 +313,7 @@ class SqlResultSetRowList extends DartHtmlDomObject with ListMixin<Map>, Immutab
return new SqlResultSetRowList.internal_();
}
+ @Deprecated("Internal Use Only")
SqlResultSetRowList.internal_() { }
bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
@@ -397,6 +401,7 @@ class SqlTransaction extends DartHtmlDomObject {
return new SqlTransaction.internal_();
}
+ @Deprecated("Internal Use Only")
SqlTransaction.internal_() { }
bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);

Powered by Google App Engine
This is Rietveld 408576698