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

Unified Diff: sky/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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/framework/components/scrollable.dart ('k') | sky/framework/debug/tracing.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/framework/debug/shake-to-reload.sky
diff --git a/sky/framework/debug/shake-to-reload.sky b/sky/framework/debug/shake-to-reload.sky
deleted file mode 100644
index 07827a8dad907046791630d12b95538c62be13e5..0000000000000000000000000000000000000000
--- a/sky/framework/debug/shake-to-reload.sky
+++ /dev/null
@@ -1,41 +0,0 @@
-<script>
-import 'dart:sky';
-import 'package:mojom/sensors/sensors.mojom.dart';
-import 'package:sky/framework/shell.dart' as shell;
-
-// TODO(abarth): We should factor this out into a kinematics library.
-class _ShakeDetector implements SensorListener {
- _ShakeDetector() {
- SensorServiceProxy sensorService = new SensorServiceProxy.unbound();
- shell.requestService("mojo:sensors", sensorService);
-
- _stub = new SensorListenerStub.unbound()..impl = this;
- sensorService.ptr.addListener(SensorType_ACCELEROMETER, _stub);
- }
-
- void onAccuracyChanged(int accuracy) {
- }
-
- void onSensorChanged(SensorData data) {
- double value = data.values[0] + data.values[1] + data.values[2];
- if (isShaking && value < 15.0)
- didCompleteShake();
- else if (value > 40.0)
- isShaking = true;
- }
-
- void didCompleteShake() {
- window.location.assign(document.URL);
- _stub.close();
- }
-
- bool isShaking = false;
- SensorListenerStub _stub;
-}
-
-_ShakeDetector _detector;
-
-void _init(_) {
- _detector = new _ShakeDetector();
-}
-</script>
« no previous file with comments | « sky/framework/components/scrollable.dart ('k') | sky/framework/debug/tracing.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698