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

Unified Diff: samples/pop_pop_win/lib/src/html.dart

Issue 242443008: samples/pop_pop_win: now based on StageXL (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: tiny nit Created 6 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
« no previous file with comments | « samples/pop_pop_win/lib/src/game_storage.dart ('k') | samples/pop_pop_win/lib/src/html/game_manager.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/pop_pop_win/lib/src/html.dart
diff --git a/samples/pop_pop_win/lib/src/html.dart b/samples/pop_pop_win/lib/src/html.dart
deleted file mode 100644
index d01fdbc74b72460038aae5a273fd0a8711924fb7..0000000000000000000000000000000000000000
--- a/samples/pop_pop_win/lib/src/html.dart
+++ /dev/null
@@ -1,31 +0,0 @@
-library pop_pop_win.html;
-
-import 'dart:async';
-import 'dart:html';
-
-import 'package:bot/bot.dart';
-import 'package:pop_pop_win/platform_target.dart';
-
-import 'game.dart';
-
-part 'html/high_score_view.dart';
-part 'html/game_view.dart';
-part 'html/game_storage.dart';
-part 'html/game_manager.dart';
-
-PlatformTarget _platformImpl;
-
-void initPlatform(PlatformTarget value) {
- assert(value != null);
- assert(!value.initialized);
- assert(_platformImpl == null);
- _platformImpl = value;
- _platformImpl.initialize();
-}
-
-PlatformTarget get targetPlatform {
- if (_platformImpl == null) {
- initPlatform(new PlatformTarget());
- }
- return _platformImpl;
-}
« no previous file with comments | « samples/pop_pop_win/lib/src/game_storage.dart ('k') | samples/pop_pop_win/lib/src/html/game_manager.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698