Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library http.test.html_utils; | 5 library microlytics.html_channels; |
| 6 | 6 |
| 7 import 'dart:html'; | 7 import 'dart:html'; |
| 8 import 'channels.dart'; | |
| 8 | 9 |
| 9 export '../utils.dart'; | 10 class HttpRequestChannel extends Channel { |
| 10 | 11 void sendData(String data) { |
| 11 /// The test server's echo URL. | 12 HttpRequest.request(ANALYTICS_URL, method: "POST", sendData: data); |
|
ahe
2014/09/05 07:51:37
When you start writing tests of this, you'll have
| |
| 12 Uri get echoUrl => Uri.parse( | 13 } |
| 13 '${window.location.protocol}//${window.location.host}/echo'); | 14 } |
| OLD | NEW |