Merge lp://staging/~thomas-voss/location-service/add-ichnaea-provider into lp://staging/location-service/trunk
Proposed by
Thomas Voß
Status: | Needs review |
---|---|
Proposed branch: | lp://staging/~thomas-voss/location-service/add-ichnaea-provider |
Merge into: | lp://staging/location-service/trunk |
Diff against target: |
10213 lines (+9973/-0) 39 files modified
3rd-party/ichnaea/CMakeLists.txt (+68/-0) 3rd-party/ichnaea/examples/client.cpp (+101/-0) 3rd-party/ichnaea/include/ichnaea/bluetooth_beacon.h (+33/-0) 3rd-party/ichnaea/include/ichnaea/client.h (+66/-0) 3rd-party/ichnaea/include/ichnaea/error.h (+56/-0) 3rd-party/ichnaea/include/ichnaea/geolocate/fallback.h (+49/-0) 3rd-party/ichnaea/include/ichnaea/geolocate/parameters.h (+48/-0) 3rd-party/ichnaea/include/ichnaea/geolocate/result.h (+45/-0) 3rd-party/ichnaea/include/ichnaea/geosubmit/parameters.h (+34/-0) 3rd-party/ichnaea/include/ichnaea/geosubmit/report.h (+67/-0) 3rd-party/ichnaea/include/ichnaea/geosubmit/result.h (+26/-0) 3rd-party/ichnaea/include/ichnaea/ichnaea.h (+37/-0) 3rd-party/ichnaea/include/ichnaea/radio_cell.h (+60/-0) 3rd-party/ichnaea/include/ichnaea/region/parameters.h (+28/-0) 3rd-party/ichnaea/include/ichnaea/region/result.h (+36/-0) 3rd-party/ichnaea/include/ichnaea/response.h (+86/-0) 3rd-party/ichnaea/include/ichnaea/wifi_access_point.h (+53/-0) 3rd-party/ichnaea/src/ichnaea/client.cpp (+120/-0) 3rd-party/ichnaea/src/ichnaea/codec.h (+371/-0) 3rd-party/ichnaea/src/ichnaea/error.cpp (+30/-0) 3rd-party/ichnaea/src/ichnaea/geolocate/fallback.cpp (+41/-0) 3rd-party/ichnaea/src/ichnaea/geosubmit/report.cpp (+29/-0) 3rd-party/ichnaea/src/ichnaea/radio_cell.cpp (+29/-0) 3rd-party/ichnaea/src/ichnaea/util/json.hpp (+7873/-0) 3rd-party/ichnaea/src/ichnaea/wifi_access_point.cpp (+37/-0) 3rd-party/ichnaea/tests/CMakeLists.txt (+19/-0) 3rd-party/ichnaea/tests/error_test.cpp (+25/-0) 3rd-party/ichnaea/tests/fallback_test.cpp (+38/-0) 3rd-party/ichnaea/tests/radio_cell_test.cpp (+26/-0) 3rd-party/ichnaea/tests/response_test.cpp (+34/-0) 3rd-party/ichnaea/tests/wifi_access_point_test.cpp (+26/-0) CMakeLists.txt (+3/-0) src/location_service/com/ubuntu/location/providers/CMakeLists.txt (+1/-0) src/location_service/com/ubuntu/location/providers/config.cpp (+7/-0) src/location_service/com/ubuntu/location/providers/mls/CMakeLists.txt (+15/-0) src/location_service/com/ubuntu/location/providers/mls/delayed_provider.cpp (+42/-0) src/location_service/com/ubuntu/location/providers/mls/delayed_provider.h (+62/-0) src/location_service/com/ubuntu/location/providers/mls/provider.cpp (+152/-0) src/location_service/com/ubuntu/location/providers/mls/provider.h (+100/-0) |
To merge this branch: | bzr merge lp://staging/~thomas-voss/location-service/add-ichnaea-provider |
Related bugs: |
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
Simon Fels | Approve | ||
Scott Sweeny (community) | Approve | ||
Review via email: mp+302429@code.staging.launchpad.net |
Commit message
Add a provider that talks to Mozilla's location services.
Description of the change
Add a provider that talks to Mozilla's location services.
To post a comment you must log in.
Unmerged revisions
- 265. By Thomas Voß
-
Add a provider that talks to Mozilla's location services.
LGTM