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

Side by Side Diff: pkg/webdriver/lib/webdriver.dart

Issue 16019002: Merge the dart:uri library into dart:core and update the Uri class (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Final cleanup Created 7 years, 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « pkg/stack_trace/test/trace_test.dart ('k') | runtime/bin/builtin.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, 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 webdriver; 5 library webdriver;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 import 'dart:io'; 8 import 'dart:io';
9 import 'dart:json' as json; 9 import 'dart:json' as json;
10 import 'dart:uri';
11 10
12 part 'src/base64decoder.dart'; 11 part 'src/base64decoder.dart';
13 12
14 /** 13 /**
15 * WebDriver bindings for Dart. 14 * WebDriver bindings for Dart.
16 * 15 *
17 * ## Installing ## 16 * ## Installing ##
18 * 17 *
19 * Use [pub][] to install this package. Add the following to your `pubspec.yaml` 18 * Use [pub][] to install this package. Add the following to your `pubspec.yaml`
20 * file. 19 * file.
(...skipping 1440 matching lines...) Expand 10 before | Expand all | Expand 10 after
1461 * 1460 *
1462 * 'timestamp' (int) - The timestamp of the entry. 1461 * 'timestamp' (int) - The timestamp of the entry.
1463 * 'level' (String) - The log level of the entry, for example, "INFO". 1462 * 'level' (String) - The log level of the entry, for example, "INFO".
1464 * 'message' (String) - The log message. 1463 * 'message' (String) - The log message.
1465 * 1464 *
1466 * This works with Firefox but Chrome returns a 500 response due to a 1465 * This works with Firefox but Chrome returns a 500 response due to a
1467 * bad cast. 1466 * bad cast.
1468 */ 1467 */
1469 Future<List<Map>> getLogs(String type) => _post('log', { 'type': type }); 1468 Future<List<Map>> getLogs(String type) => _post('log', { 'type': type });
1470 } 1469 }
OLDNEW
« no previous file with comments | « pkg/stack_trace/test/trace_test.dart ('k') | runtime/bin/builtin.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698