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

Side by Side Diff: sky/sdk/lib/framework/debug/shake-to-reload.sky

Issue 1132063007: Rationalize Dart mojo and sky package structure (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 7 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
OLDNEW
1 <script> 1 <script>
2 import 'dart:sky'; 2 import 'dart:sky';
3 import 'package:mojom/sensors/sensors.mojom.dart'; 3 import 'package:mojom/sensors/sensors.mojom.dart';
4 import 'package:sky/framework/shell.dart' as shell; 4 import 'package:sky/framework/shell.dart' as shell;
5 5
6 // TODO(abarth): We should factor this out into a kinematics library. 6 // TODO(abarth): We should factor this out into a kinematics library.
7 class _ShakeDetector implements SensorListener { 7 class _ShakeDetector implements SensorListener {
8 _ShakeDetector() { 8 _ShakeDetector() {
9 SensorServiceProxy sensorService = new SensorServiceProxy.unbound(); 9 SensorServiceProxy sensorService = new SensorServiceProxy.unbound();
10 shell.requestService("mojo:sensors", sensorService); 10 shell.requestService("mojo:sensors", sensorService);
(...skipping 21 matching lines...) Expand all
32 bool isShaking = false; 32 bool isShaking = false;
33 SensorListenerStub _stub; 33 SensorListenerStub _stub;
34 } 34 }
35 35
36 _ShakeDetector _detector; 36 _ShakeDetector _detector;
37 37
38 void _init(_) { 38 void _init(_) {
39 _detector = new _ShakeDetector(); 39 _detector = new _ShakeDetector();
40 } 40 }
41 </script> 41 </script>
OLDNEW
« no previous file with comments | « sky/sdk/lib/framework/components/scrollable.dart ('k') | sky/sdk/lib/framework/debug/tracing.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698