Index: modules/geofencing/Geofencing.idl |
diff --git a/modules/geofencing/Geofencing.idl b/modules/geofencing/Geofencing.idl |
new file mode 100644 |
index 0000000000000000000000000000000000000000..7b36e70cfbbcbcaf250a778a7454e0b5babfe32d |
--- /dev/null |
+++ b/modules/geofencing/Geofencing.idl |
@@ -0,0 +1,13 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+[ |
+ NoInterfaceObject, |
+ RuntimeEnabled=Geofencing, |
+ GarbageCollected, |
+] interface Geofencing { |
+ [CallWith=ScriptState] Promise registerRegion(GeofencingRegion region); |
+ [CallWith=ScriptState] Promise unregisterRegion(DOMString regionId); |
+ [CallWith=ScriptState] Promise getRegisteredRegions(); |
+}; |