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

Unified Diff: client/dom/benchmarks/dromaeo/Suites.dart

Issue 9374026: Move dromaeo to third_party (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Moved Dromaeo to third party. Created 8 years, 10 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 | « client/dom/benchmarks/dromaeo/Dromaeo.dart ('k') | client/dom/benchmarks/dromaeo/application.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/benchmarks/dromaeo/Suites.dart
diff --git a/client/dom/benchmarks/dromaeo/Suites.dart b/client/dom/benchmarks/dromaeo/Suites.dart
deleted file mode 100644
index 7c28a9b6c908789d27f9db6f70d218465a987790..0000000000000000000000000000000000000000
--- a/client/dom/benchmarks/dromaeo/Suites.dart
+++ /dev/null
@@ -1,44 +0,0 @@
-#library('Suites.dart');
-
-class Origin {
- final String author;
- final String url;
-
- const Origin(this.author, this.url);
-}
-
-class SuiteDescription {
- final String file;
- final String name;
- final Origin origin;
- final String description;
-
- const SuiteDescription(this.file, this.name, this.origin, this.description);
-}
-
-class Suites {
- static final JOHN_RESIG = const Origin('John Resig', 'http://ejohn.org/');
-
- static final SUITE_DESCRIPTIONS = const [
- const SuiteDescription(
- 'dom-attr.html',
- 'DOM Attributes',
- JOHN_RESIG,
- 'Setting and getting DOM node attributes'),
- const SuiteDescription(
- 'dom-modify.html',
- 'DOM Modification',
- JOHN_RESIG,
- 'Creating and injecting DOM nodes into a document'),
- const SuiteDescription(
- 'dom-query.html',
- 'DOM Query',
- JOHN_RESIG,
- 'Querying DOM elements in a document'),
- const SuiteDescription(
- 'dom-traverse.html',
- 'DOM Traversal',
- JOHN_RESIG,
- 'Traversing a DOM structure')
- ];
-}
« no previous file with comments | « client/dom/benchmarks/dromaeo/Dromaeo.dart ('k') | client/dom/benchmarks/dromaeo/application.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698