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

Unified Diff: samples/github/bin/github.dart

Issue 2035023003: Remove service-compiler related code. (Closed) Base URL: git@github.com:dartino/sdk.git@master
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « samples/github/android/compile_mock.sh ('k') | samples/github/bin/github_mock_service.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/github/bin/github.dart
diff --git a/samples/github/bin/github.dart b/samples/github/bin/github.dart
deleted file mode 100644
index 47f2d79aa410bac247aa2b811a6482fdb4fb97c7..0000000000000000000000000000000000000000
--- a/samples/github/bin/github.dart
+++ /dev/null
@@ -1,30 +0,0 @@
-// Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE.md file.
-
-import 'package:immi/dart/immi_service_impl.dart';
-
-import 'package:github_sample/src/commit_list_presenter.dart';
-import 'package:github_sample/src/commit_presenter.dart';
-import 'package:github_sample/src/github_services.dart';
-
-import 'package:immi_samples/drawer.dart';
-import 'package:immi_samples/menu.dart';
-
-main() {
- var server = new Server('127.0.0.1', 8321);
- var user = server.getUser('dartino');
- var repo = user.getRepository('sdk');
-
- var menu = new Menu('Menu');
- var commits = new CommitListPresenter(repo);
- var drawer = new Drawer(commits, left: menu);
-
- menu.add(new MenuItem('Dartino', () { drawer.center = commits; }));
-
- var impl = new ImmiServiceImpl();
- impl.add('DrawerPresenter', drawer);
-
- impl.run();
- server.close();
-}
« no previous file with comments | « samples/github/android/compile_mock.sh ('k') | samples/github/bin/github_mock_service.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698