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

Issue 375353002: Add the first very basic bits of a geofencing API. (Closed)

Created:
6 years, 5 months ago by Marijn Kruisselbrink
Modified:
6 years, 5 months ago
CC:
blink-reviews, mvanouwerkerk+watch_chromium.org, timvolodine
Base URL:
https://chromium.googlesource.com/chromium/blink.git@master
Project:
blink
Visibility:
Public.

Description

Add the first very basic bits of a geofencing API. Just adding the various methods on navigator.geolocation, which currently all always fail. BUG=383125 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=178052

Patch Set 1 #

Patch Set 2 : finalized, and update layout tests #

Total comments: 13

Patch Set 3 : address comments #

Total comments: 31

Patch Set 4 : address more comments #

Patch Set 5 : update tests #

Total comments: 9

Patch Set 6 : #

Total comments: 5

Patch Set 7 : nits #

Unified diffs Side-by-side diffs Delta from patch set Stats (+209 lines, -4 lines) Patch
A LayoutTests/fast/dom/Geolocation/geofencing-not-implemented.html View 1 2 3 4 5 1 chunk +22 lines, -0 lines 0 comments Download
A LayoutTests/fast/dom/Geolocation/geofencing-not-implemented-expected.txt View 1 2 3 4 5 1 chunk +12 lines, -0 lines 0 comments Download
M LayoutTests/fast/dom/Window/window-properties-geolocation-expected.txt View 1 2 3 4 1 chunk +3 lines, -0 lines 0 comments Download
M LayoutTests/webexposed/global-constructors-listing-dedicated-worker-expected.txt View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/webexposed/global-constructors-listing-expected.txt View 1 5 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/webexposed/global-constructors-listing-shared-worker-expected.txt View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
A Source/modules/geolocation/CircularRegion.h View 1 2 3 4 5 6 1 chunk +46 lines, -0 lines 0 comments Download
A Source/modules/geolocation/CircularRegion.cpp View 1 2 3 4 5 6 1 chunk +37 lines, -0 lines 0 comments Download
A Source/modules/geolocation/CircularRegion.idl View 1 2 3 1 chunk +17 lines, -0 lines 0 comments Download
A Source/modules/geolocation/GeofencingRegion.h View 1 2 3 4 5 6 1 chunk +32 lines, -0 lines 0 comments Download
A + Source/modules/geolocation/GeofencingRegion.idl View 4 5 1 chunk +3 lines, -3 lines 0 comments Download
M Source/modules/geolocation/Geolocation.h View 1 2 3 4 5 6 3 chunks +6 lines, -0 lines 0 comments Download
M Source/modules/geolocation/Geolocation.cpp View 1 2 3 4 5 6 2 chunks +18 lines, -0 lines 0 comments Download
M Source/modules/geolocation/Geolocation.idl View 1 2 3 1 chunk +4 lines, -1 line 0 comments Download
M Source/modules/modules.gypi View 1 2 3 4 5 6 2 chunks +5 lines, -0 lines 0 comments Download
M Source/platform/RuntimeEnabledFeatures.in View 1 2 3 4 5 6 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 13 (0 generated)
Marijn Kruisselbrink
I have (well, had, since so much changed/moved around in blink that resolving all the ...
6 years, 5 months ago (2014-07-09 13:11:32 UTC) #1
jochen (gone - plz use gerrit)
https://codereview.chromium.org/375353002/diff/20001/Source/modules/geolocation/CircularRegion.h File Source/modules/geolocation/CircularRegion.h (right): https://codereview.chromium.org/375353002/diff/20001/Source/modules/geolocation/CircularRegion.h#newcode24 Source/modules/geolocation/CircularRegion.h:24: class CircularRegion : public GeofencingRegion { wtf_make_noncopyable()? https://codereview.chromium.org/375353002/diff/20001/Source/modules/geolocation/CircularRegion.idl File ...
6 years, 5 months ago (2014-07-10 11:38:51 UTC) #2
Marijn Kruisselbrink
Thanks for the review. This being my first attempt of doing anything more in blink ...
6 years, 5 months ago (2014-07-10 12:36:00 UTC) #3
Peter Beverloo
https://codereview.chromium.org/375353002/diff/20001/Source/modules/geolocation/CircularRegion.idl File Source/modules/geolocation/CircularRegion.idl (right): https://codereview.chromium.org/375353002/diff/20001/Source/modules/geolocation/CircularRegion.idl#newcode11 Source/modules/geolocation/CircularRegion.idl:11: const double MAX_RADIUS = 100.0; On 2014/07/10 12:36:00, Marijn ...
6 years, 5 months ago (2014-07-10 13:17:28 UTC) #4
Marijn Kruisselbrink
https://codereview.chromium.org/375353002/diff/40001/Source/modules/geolocation/CircularRegion.h File Source/modules/geolocation/CircularRegion.h (right): https://codereview.chromium.org/375353002/diff/40001/Source/modules/geolocation/CircularRegion.h#newcode24 Source/modules/geolocation/CircularRegion.h:24: class CircularRegion : public GeofencingRegion { On 2014/07/10 13:17:27, ...
6 years, 5 months ago (2014-07-10 15:11:01 UTC) #5
Peter Beverloo
Thanks for the updates, Marijn! https://codereview.chromium.org/375353002/diff/40001/Source/modules/geolocation/CircularRegion.idl File Source/modules/geolocation/CircularRegion.idl (right): https://codereview.chromium.org/375353002/diff/40001/Source/modules/geolocation/CircularRegion.idl#newcode8 Source/modules/geolocation/CircularRegion.idl:8: Constructor(Dictionary init) On 2014/07/10 ...
6 years, 5 months ago (2014-07-10 16:31:37 UTC) #6
Marijn Kruisselbrink
https://codereview.chromium.org/375353002/diff/40001/Source/modules/geolocation/CircularRegion.idl File Source/modules/geolocation/CircularRegion.idl (right): https://codereview.chromium.org/375353002/diff/40001/Source/modules/geolocation/CircularRegion.idl#newcode8 Source/modules/geolocation/CircularRegion.idl:8: Constructor(Dictionary init) On 2014/07/10 16:31:36, Peter Beverloo wrote: > ...
6 years, 5 months ago (2014-07-11 10:06:40 UTC) #7
Peter Beverloo
lgtm % a few nits. You will need OWNERS approval as well, perhaps Jochen can ...
6 years, 5 months ago (2014-07-11 10:34:34 UTC) #8
jochen (gone - plz use gerrit)
lgtm
6 years, 5 months ago (2014-07-14 11:06:18 UTC) #9
Marijn Kruisselbrink
The CQ bit was checked by mek@chromium.org
6 years, 5 months ago (2014-07-14 11:13:25 UTC) #10
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mek@chromium.org/375353002/120001
6 years, 5 months ago (2014-07-14 11:13:36 UTC) #11
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: win_blink_rel on tryserver.blink ...
6 years, 5 months ago (2014-07-14 12:18:39 UTC) #12
commit-bot: I haz the power
6 years, 5 months ago (2014-07-14 12:58:52 UTC) #13
Message was sent while issue was closed.
Change committed as 178052

Powered by Google App Engine
This is Rietveld 408576698