| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // FIXME: Add the spec URL. | 5 // FIXME: Add the spec URL. |
| 6 | 6 |
| 7 [ | 7 dictionary CircularGeofencingRegionInit { |
| 8 TypeChecking=Unrestricted, | |
| 9 ] dictionary CircularGeofencingRegionInit { | |
| 10 DOMString? id = null; | 8 DOMString? id = null; |
| 11 double latitude; | 9 double latitude; |
| 12 double longitude; | 10 double longitude; |
| 13 double radius; | 11 double radius; |
| 14 }; | 12 }; |
| OLD | NEW |