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

Unified Diff: lib/dom/src/_XMLHttpRequestUtils.dart

Issue 10291006: Rename getTEMPNAME to get (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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
Index: lib/dom/src/_XMLHttpRequestUtils.dart
diff --git a/lib/dom/src/_XMLHttpRequestUtils.dart b/lib/dom/src/_XMLHttpRequestUtils.dart
index 5f6830c0299dc0d35c46f1478911d9589b5816d3..0875dd2d23a31f8ddd132a8fbf39c896c876ef26 100644
--- a/lib/dom/src/_XMLHttpRequestUtils.dart
+++ b/lib/dom/src/_XMLHttpRequestUtils.dart
@@ -4,9 +4,9 @@
class _XMLHttpRequestUtils {
- // Helper for factory XMLHttpRequest.getTEMPNAME
- static XMLHttpRequest getTEMPNAME(String url,
- onSuccess(XMLHttpRequest request)) {
+ // Helper for factory XMLHttpRequest.get
+ static XMLHttpRequest get(String url,
+ onSuccess(XMLHttpRequest request)) {
final request = new XMLHttpRequest();
request.open('GET', url, true);

Powered by Google App Engine
This is Rietveld 408576698