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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/geofencing/resources/worker-passes-events-back.js

Issue 1972733002: Delete geofencing implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: mark histogram suffix as obsolete Created 4 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
Index: third_party/WebKit/LayoutTests/http/tests/geofencing/resources/worker-passes-events-back.js
diff --git a/third_party/WebKit/LayoutTests/http/tests/geofencing/resources/worker-passes-events-back.js b/third_party/WebKit/LayoutTests/http/tests/geofencing/resources/worker-passes-events-back.js
deleted file mode 100644
index c8dc9aed754a05cd1e656103ff8ed56cc2754588..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/http/tests/geofencing/resources/worker-passes-events-back.js
+++ /dev/null
@@ -1,14 +0,0 @@
-var port;
-
-self.addEventListener('message', function(event) {
- port = event.data.port;
- port.postMessage('setup');
-});
-
-self.addEventListener('geofenceenter', function(event) {
- port.postMessage({event: 'geofenceenter', id: event.region.id});
-});
-
-self.addEventListener('geofenceleave', function(event) {
- port.postMessage({event: 'geofenceleave', id: event.region.id});
-});

Powered by Google App Engine
This is Rietveld 408576698