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

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

Issue 258733009: Rename blink -> _blink (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Regenerate SDK from dart repo Created 6 years, 8 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/create_sdk.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 97cbc932cfdcbb8393894fa342ad2bdd0a5f81e8..992c41ea505f6908539f32d1138ebd3cc2548e49 100644
--- a/sdk/lib/web_sql/dartium/web_sql_dartium.dart
+++ b/sdk/lib/web_sql/dartium/web_sql_dartium.dart
@@ -16,7 +16,7 @@ import 'dart:_internal' hide deprecated;
import 'dart:html';
import 'dart:html_common';
import 'dart:nativewrappers';
-import 'dart:blink' as blink;
+import 'dart:_blink' as _blink;
// DO NOT EDIT - unless you are editing documentation as per:
// https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation
// Auto-generated dart:audio library.
@@ -91,7 +91,7 @@ class SqlDatabase extends NativeFieldWrapperClass2 {
@DomName('Database.version')
@DocsEditable()
- String get version => blink.Native_Database_version_Getter(this);
+ String get version => _blink.Native_Database_version_Getter(this);
/**
* Atomically update the database version to [newVersion], asynchronously
@@ -107,15 +107,15 @@ class SqlDatabase extends NativeFieldWrapperClass2 {
*/
@DomName('Database.changeVersion')
@DocsEditable()
- void changeVersion(String oldVersion, String newVersion, [SqlTransactionCallback callback, SqlTransactionErrorCallback errorCallback, VoidCallback successCallback]) => blink.Native_Database_changeVersion_Callback(this, oldVersion, newVersion, callback, errorCallback, successCallback);
+ void changeVersion(String oldVersion, String newVersion, [SqlTransactionCallback callback, SqlTransactionErrorCallback errorCallback, VoidCallback successCallback]) => _blink.Native_Database_changeVersion_Callback(this, oldVersion, newVersion, callback, errorCallback, successCallback);
@DomName('Database.readTransaction')
@DocsEditable()
- void readTransaction(SqlTransactionCallback callback, [SqlTransactionErrorCallback errorCallback, VoidCallback successCallback]) => blink.Native_Database_readTransaction_Callback(this, callback, errorCallback, successCallback);
+ void readTransaction(SqlTransactionCallback callback, [SqlTransactionErrorCallback errorCallback, VoidCallback successCallback]) => _blink.Native_Database_readTransaction_Callback(this, callback, errorCallback, successCallback);
@DomName('Database.transaction')
@DocsEditable()
- void transaction(SqlTransactionCallback callback, [SqlTransactionErrorCallback errorCallback, VoidCallback successCallback]) => blink.Native_Database_transaction_Callback(this, callback, errorCallback, successCallback);
+ void transaction(SqlTransactionCallback callback, [SqlTransactionErrorCallback errorCallback, VoidCallback successCallback]) => _blink.Native_Database_transaction_Callback(this, callback, errorCallback, successCallback);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -167,11 +167,11 @@ class SqlError extends NativeFieldWrapperClass2 {
@DomName('SQLError.code')
@DocsEditable()
- int get code => blink.Native_SQLError_code_Getter(this);
+ int get code => _blink.Native_SQLError_code_Getter(this);
@DomName('SQLError.message')
@DocsEditable()
- String get message => blink.Native_SQLError_message_Getter(this);
+ String get message => _blink.Native_SQLError_message_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -191,15 +191,15 @@ class SqlResultSet extends NativeFieldWrapperClass2 {
@DomName('SQLResultSet.insertId')
@DocsEditable()
- int get insertId => blink.Native_SQLResultSet_insertId_Getter(this);
+ int get insertId => _blink.Native_SQLResultSet_insertId_Getter(this);
@DomName('SQLResultSet.rows')
@DocsEditable()
- SqlResultSetRowList get rows => blink.Native_SQLResultSet_rows_Getter(this);
+ SqlResultSetRowList get rows => _blink.Native_SQLResultSet_rows_Getter(this);
@DomName('SQLResultSet.rowsAffected')
@DocsEditable()
- int get rowsAffected => blink.Native_SQLResultSet_rowsAffected_Getter(this);
+ int get rowsAffected => _blink.Native_SQLResultSet_rowsAffected_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -219,15 +219,15 @@ class SqlResultSetRowList extends NativeFieldWrapperClass2 with ListMixin<Map>,
@DomName('SQLResultSetRowList.length')
@DocsEditable()
- int get length => blink.Native_SQLResultSetRowList_length_Getter(this);
+ int get length => _blink.Native_SQLResultSetRowList_length_Getter(this);
Map operator[](int index) {
if (index < 0 || index >= length)
throw new RangeError.range(index, 0, length);
- return blink.Native_SQLResultSetRowList_NativeIndexed_Getter(this, index);
+ return _blink.Native_SQLResultSetRowList_NativeIndexed_Getter(this, index);
}
- Map _nativeIndexedGetter(int index) => blink.Native_SQLResultSetRowList_NativeIndexed_Getter(this, index);
+ Map _nativeIndexedGetter(int index) => _blink.Native_SQLResultSetRowList_NativeIndexed_Getter(this, index);
void operator[]=(int index, Map value) {
throw new UnsupportedError("Cannot assign element of immutable List.");
@@ -269,7 +269,7 @@ class SqlResultSetRowList extends NativeFieldWrapperClass2 with ListMixin<Map>,
@DomName('SQLResultSetRowList.item')
@DocsEditable()
- Map item(int index) => blink.Native_SQLResultSetRowList_item_Callback(this, index);
+ Map item(int index) => _blink.Native_SQLResultSetRowList_item_Callback(this, index);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -292,7 +292,7 @@ class SqlTransaction extends NativeFieldWrapperClass2 {
@DomName('SQLTransaction.executeSql')
@DocsEditable()
- void executeSql(String sqlStatement, List<Object> arguments, [SqlStatementCallback callback, SqlStatementErrorCallback errorCallback]) => blink.Native_SQLTransaction_executeSql_Callback(this, sqlStatement, arguments, callback, errorCallback);
+ void executeSql(String sqlStatement, List<Object> arguments, [SqlStatementCallback callback, SqlStatementErrorCallback errorCallback]) => _blink.Native_SQLTransaction_executeSql_Callback(this, sqlStatement, arguments, callback, errorCallback);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
« no previous file with comments | « sdk/lib/web_gl/dartium/web_gl_dartium.dart ('k') | tools/create_sdk.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698