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

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

Issue 23055008: Making almost all dom_ methods private. Exceptions will be addressed in a later CL. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 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
Index: tools/dom/templates/html/impl/impl_IDBFactory.darttemplate
diff --git a/tools/dom/templates/html/impl/impl_IDBFactory.darttemplate b/tools/dom/templates/html/impl/impl_IDBFactory.darttemplate
index d811f9aa5634588340112c10fd51404f40189486..e676f0cda9a0391d17e1fe9219c5a12d65becffe 100644
--- a/tools/dom/templates/html/impl/impl_IDBFactory.darttemplate
+++ b/tools/dom/templates/html/impl/impl_IDBFactory.darttemplate
@@ -30,9 +30,9 @@ $endif
try {
var request;
if (version != null) {
- request = $dom_open(name, version);
+ request = _open(name, version);
} else {
- request = $dom_open(name);
+ request = _open(name);
}
if (onUpgradeNeeded != null) {
@@ -51,7 +51,7 @@ $endif
Future<IdbFactory> deleteDatabase(String name,
{void onBlocked(Event)}) {
try {
- var request = $dom_deleteDatabase(name);
+ var request = _deleteDatabase(name);
if (onBlocked != null) {
request.onBlocked.listen(onBlocked);
@@ -74,7 +74,7 @@ $endif
@Experimental()
Future<List<String>> getDatabaseNames() {
try {
- var request = $dom_webkitGetDatabaseNames();
+ var request = _webkitGetDatabaseNames();
return _completeRequest(request);
} catch (e, stacktrace) {
« no previous file with comments | « tools/dom/templates/html/impl/impl_IDBDatabase.darttemplate ('k') | tools/dom/templates/html/impl/impl_IDBIndex.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698