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

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

Issue 1257733003: Change _internal from private so we work across library boundaries (Closed) Base URL: git@github.com:dart-lang/sdk.git@integration
Patch Set: Created 5 years, 5 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/web_gl/dartium/web_gl_dartium.dart ('k') | tools/dom/scripts/systemhtml.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 8960eedfba0ba0c79033e08706965a72da47a948..bbdc9aafc7f95881eda72ce76181d0053c9b6bc7 100644
--- a/sdk/lib/web_sql/dartium/web_sql_dartium.dart
+++ b/sdk/lib/web_sql/dartium/web_sql_dartium.dart
@@ -112,10 +112,10 @@ class SqlDatabase extends NativeFieldWrapperClass2 {
JsObject blink_jsObject = null;
factory SqlDatabase._internalWrap() {
- return new SqlDatabase._internal();
+ return new SqlDatabase.internal_();
}
- SqlDatabase._internal() { }
+ SqlDatabase.internal_() { }
bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
@@ -192,10 +192,10 @@ class SqlError extends NativeFieldWrapperClass2 {
JsObject blink_jsObject = null;
factory SqlError._internalWrap() {
- return new SqlError._internal();
+ return new SqlError.internal_();
}
- SqlError._internal() { }
+ SqlError.internal_() { }
bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
@@ -262,10 +262,10 @@ class SqlResultSet extends NativeFieldWrapperClass2 {
JsObject blink_jsObject = null;
factory SqlResultSet._internalWrap() {
- return new SqlResultSet._internal();
+ return new SqlResultSet.internal_();
}
- SqlResultSet._internal() { }
+ SqlResultSet.internal_() { }
bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
@@ -304,10 +304,10 @@ class SqlResultSetRowList extends NativeFieldWrapperClass2 with ListMixin<Map>,
JsObject blink_jsObject = null;
factory SqlResultSetRowList._internalWrap() {
- return new SqlResultSetRowList._internal();
+ return new SqlResultSetRowList.internal_();
}
- SqlResultSetRowList._internal() { }
+ SqlResultSetRowList.internal_() { }
bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
@@ -391,10 +391,10 @@ class SqlTransaction extends NativeFieldWrapperClass2 {
JsObject blink_jsObject = null;
factory SqlTransaction._internalWrap() {
- return new SqlTransaction._internal();
+ return new SqlTransaction.internal_();
}
- SqlTransaction._internal() { }
+ SqlTransaction.internal_() { }
bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
« no previous file with comments | « sdk/lib/web_gl/dartium/web_gl_dartium.dart ('k') | tools/dom/scripts/systemhtml.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698