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

Issue 2161223003: Adds GeolocationFeature for Blimp Geolocation project. (Closed)

Created:
4 years, 5 months ago by CJ
Modified:
4 years, 3 months ago
CC:
chromium-reviews, anandc+watch-blimp_chromium.org, maniscalco+watch-blimp_chromium.org, sriramsr+watch-blimp_chromium.org, gcasto+watch-blimp_chromium.org, nyquist+watch-blimp_chromium.org, marcinjb+watch-blimp_chromium.org, jessicag+watch-blimp_chromium.org, kmarshall+watch-blimp_chromium.org, lethalantidote+watch-blimp_chromium.org, dtrainor+watch-blimp_chromium.org, shaktisahu+watch-blimp_chromium.org, khushalsagar+watch-blimp_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@engine_feature_prep
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Adds GeolocationFeature for Blimp Geolocation project. This change provides the client-side classes needed to receive and send geolocation messages. GeolocationFeature sends messages from the client that either contain a geolocation coordinate or error message. The GeolocationFeature class handles incoming GeoloationSetInterestLevelMessages and RequestRefreshMessages. Other items included: * Changes device/geolocation/mock_location_provider to use fake_location_provider name * Moves blimp/client/feature/mock_location_provider into device/geolocation. BUG=614486 Committed: https://crrev.com/7a376a1a71743b1b50c6fb9c206ffbb0ca8c8ba2 Cr-Commit-Position: refs/heads/master@{#414797}

Patch Set 1 #

Total comments: 24

Patch Set 2 : Addresses kmarshall's #8 comments and adds unittest #

Total comments: 11

Patch Set 3 : Addresses Wez's #10 comments #

Patch Set 4 : Addresses Wez's #12 comment #

Total comments: 26

Patch Set 5 : Addresses kmarshall's #14 comments #

Total comments: 22

Patch Set 6 : Addresses kmarshall's #16 comments #

Total comments: 20

Patch Set 7 : Addresses Wez's #18 feedback #

Total comments: 4

Patch Set 8 : Addresses Wez's #21 comments #

Patch Set 9 : Adds deps for device/geolocation. #

Patch Set 10 : Fixes BUILD to include //device/geolocation #

Total comments: 10

Patch Set 11 : Fixes BUILD.gn #

Patch Set 12 : Addresses kmarshall's #33 comments #

Patch Set 13 : Adding more deps to BUILD for device/geolocation. #

Total comments: 7

Patch Set 14 : Addresses kmarshall's #49 comments #

Patch Set 15 : Addresses Wez's #50 comments and adds DEP file #

Patch Set 16 : Update BUILD. #

Patch Set 17 : Makes UnexpectedMessage test work outside of debug #

Total comments: 34

Patch Set 18 : Addresses kmarshall's #66 comments #

Total comments: 2

Patch Set 19 : Addresses kmarshall's #68 comments #

Patch Set 20 : Merge branch 'lai' into client_feature #

Patch Set 21 : Moves geolocation files to blimp/client/core/geolocation #

Patch Set 22 : Clean up. #

Total comments: 6

Patch Set 23 : Addresses nyquist's #79 comments #

Total comments: 43

Patch Set 24 : In response to Wez's #81 comments. #

Patch Set 25 : Addresses kmarshall's #82 comments. #

Total comments: 8

Patch Set 26 : Addressses Wez's #94 comments. #

Total comments: 3

Patch Set 27 : Addresses kmarshall's #102 comment. #

Total comments: 4

Patch Set 28 : Addresses Wez's #105 comments. #

Patch Set 29 : Merge branch 'master' into client_feature #

Patch Set 30 : Merge branch 'master' into client_feature #

Patch Set 31 : More merging. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+637 lines, -153 lines) Patch
M blimp/client/core/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 2 chunks +2 lines, -0 lines 0 comments Download
A blimp/client/core/geolocation/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 1 chunk +62 lines, -0 lines 0 comments Download
A + blimp/client/core/geolocation/DEPS View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 0 chunks +-1 lines, --1 lines 0 comments Download
A blimp/client/core/geolocation/geolocation_feature.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 1 chunk +75 lines, -0 lines 0 comments Download
A blimp/client/core/geolocation/geolocation_feature.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 1 chunk +154 lines, -0 lines 0 comments Download
A blimp/client/core/geolocation/geolocation_feature_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 1 chunk +233 lines, -0 lines 0 comments Download
M blimp/engine/feature/geolocation/blimp_location_provider.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +1 line, -1 line 0 comments Download
M blimp/engine/feature/geolocation/blimp_location_provider.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +1 line, -1 line 0 comments Download
M blimp/engine/feature/geolocation/blimp_location_provider_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +2 lines, -2 lines 0 comments Download
M blimp/engine/feature/geolocation/engine_geolocation_feature.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 1 chunk +1 line, -1 line 0 comments Download
M blimp/engine/feature/geolocation/engine_geolocation_feature.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 1 chunk +1 line, -1 line 0 comments Download
M blimp/engine/feature/geolocation/mock_blimp_location_provider_delegate.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 1 chunk +1 line, -1 line 0 comments Download
M device/geolocation/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 29 2 chunks +20 lines, -3 lines 0 comments Download
A + device/geolocation/fake_location_provider.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 2 chunks +15 lines, -15 lines 0 comments Download
A + device/geolocation/fake_location_provider.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 29 3 chunks +13 lines, -13 lines 0 comments Download
M device/geolocation/geolocation_provider_impl_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 7 chunks +14 lines, -14 lines 0 comments Download
M device/geolocation/location_arbitrator_impl_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 29 16 chunks +31 lines, -29 lines 0 comments Download
M device/geolocation/mock_location_provider.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +10 lines, -27 lines 0 comments Download
M device/geolocation/mock_location_provider.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 29 1 chunk +2 lines, -46 lines 0 comments Download

Depends on Patchset:

Messages

Total messages: 118 (65 generated)
CJ
4 years, 5 months ago (2016-07-20 01:08:08 UTC) #3
Kevin M
https://codereview.chromium.org/2161223003/diff/1/blimp/client/feature/geolocation_feature.cc File blimp/client/feature/geolocation_feature.cc (right): https://codereview.chromium.org/2161223003/diff/1/blimp/client/feature/geolocation_feature.cc#newcode80 blimp/client/feature/geolocation_feature.cc:80: // This case shouldn't be hit. Error? Use NOTREACHED() ...
4 years, 5 months ago (2016-07-20 17:30:16 UTC) #8
CJ
https://codereview.chromium.org/2161223003/diff/1/blimp/client/feature/geolocation_feature.cc File blimp/client/feature/geolocation_feature.cc (right): https://codereview.chromium.org/2161223003/diff/1/blimp/client/feature/geolocation_feature.cc#newcode80 blimp/client/feature/geolocation_feature.cc:80: // This case shouldn't be hit. Error? On 2016/07/20 ...
4 years, 5 months ago (2016-07-20 23:22:11 UTC) #9
Wez
https://codereview.chromium.org/2161223003/diff/20001/blimp/client/feature/geolocation_feature.cc File blimp/client/feature/geolocation_feature.cc (right): https://codereview.chromium.org/2161223003/diff/20001/blimp/client/feature/geolocation_feature.cc#newcode81 blimp/client/feature/geolocation_feature.cc:81: NOTREACHED() << "ERROR_CODE_NONE GIVEN."; nit: No need for the ...
4 years, 5 months ago (2016-07-22 01:35:08 UTC) #10
CJ
https://codereview.chromium.org/2161223003/diff/20001/blimp/client/feature/geolocation_feature.cc File blimp/client/feature/geolocation_feature.cc (right): https://codereview.chromium.org/2161223003/diff/20001/blimp/client/feature/geolocation_feature.cc#newcode81 blimp/client/feature/geolocation_feature.cc:81: NOTREACHED() << "ERROR_CODE_NONE GIVEN."; On 2016/07/22 01:35:08, Wez wrote: ...
4 years, 5 months ago (2016-07-22 19:22:35 UTC) #11
Wez
Re my suggestion to use LocationProvider - if there's a specific reason not to use ...
4 years, 5 months ago (2016-07-22 22:14:51 UTC) #12
CJ
On 2016/07/22 22:14:51, Wez wrote: > Re my suggestion to use LocationProvider - if there's ...
4 years, 5 months ago (2016-07-26 00:28:17 UTC) #13
Kevin M
https://codereview.chromium.org/2161223003/diff/60001/blimp/client/feature/geolocation_feature.cc File blimp/client/feature/geolocation_feature.cc (right): https://codereview.chromium.org/2161223003/diff/60001/blimp/client/feature/geolocation_feature.cc#newcode55 blimp/client/feature/geolocation_feature.cc:55: case GeolocationMessage::TYPE_NOT_SET: Break visibly on debug builds: DLOG(FATAL) << ...
4 years, 4 months ago (2016-07-28 21:32:43 UTC) #14
CJ
https://codereview.chromium.org/2161223003/diff/60001/blimp/client/feature/geolocation_feature.cc File blimp/client/feature/geolocation_feature.cc (right): https://codereview.chromium.org/2161223003/diff/60001/blimp/client/feature/geolocation_feature.cc#newcode55 blimp/client/feature/geolocation_feature.cc:55: case GeolocationMessage::TYPE_NOT_SET: On 2016/07/28 21:32:42, Kevin M wrote: > ...
4 years, 4 months ago (2016-08-01 19:21:16 UTC) #15
Kevin M
Looking good, just some minor comments. https://codereview.chromium.org/2161223003/diff/80001/blimp/client/feature/geolocation_feature.cc File blimp/client/feature/geolocation_feature.cc (right): https://codereview.chromium.org/2161223003/diff/80001/blimp/client/feature/geolocation_feature.cc#newcode13 blimp/client/feature/geolocation_feature.cc:13: #include "blimp/common/proto/geolocation.pb.h" Already ...
4 years, 4 months ago (2016-08-01 20:51:05 UTC) #16
CJ
https://codereview.chromium.org/2161223003/diff/80001/blimp/client/feature/geolocation_feature.cc File blimp/client/feature/geolocation_feature.cc (right): https://codereview.chromium.org/2161223003/diff/80001/blimp/client/feature/geolocation_feature.cc#newcode13 blimp/client/feature/geolocation_feature.cc:13: #include "blimp/common/proto/geolocation.pb.h" On 2016/08/01 20:51:04, Kevin M wrote: > ...
4 years, 4 months ago (2016-08-02 00:36:01 UTC) #17
Wez
https://codereview.chromium.org/2161223003/diff/100001/blimp/client/feature/geolocation_feature.cc File blimp/client/feature/geolocation_feature.cc (right): https://codereview.chromium.org/2161223003/diff/100001/blimp/client/feature/geolocation_feature.cc#newcode22 blimp/client/feature/geolocation_feature.cc:22: DCHECK(location_provider); nit: Strictly you don't need this, since you ...
4 years, 4 months ago (2016-08-02 01:18:11 UTC) #18
Wez
Looking good :D
4 years, 4 months ago (2016-08-02 01:18:25 UTC) #19
CJ
https://codereview.chromium.org/2161223003/diff/100001/blimp/client/feature/geolocation_feature.cc File blimp/client/feature/geolocation_feature.cc (right): https://codereview.chromium.org/2161223003/diff/100001/blimp/client/feature/geolocation_feature.cc#newcode22 blimp/client/feature/geolocation_feature.cc:22: DCHECK(location_provider); On 2016/08/02 01:18:10, Wez wrote: > nit: Strictly ...
4 years, 4 months ago (2016-08-03 20:06:03 UTC) #20
Wez
LGTM w/ nits! https://codereview.chromium.org/2161223003/diff/100001/blimp/client/feature/geolocation_feature.cc File blimp/client/feature/geolocation_feature.cc (right): https://codereview.chromium.org/2161223003/diff/100001/blimp/client/feature/geolocation_feature.cc#newcode104 blimp/client/feature/geolocation_feature.cc:104: net::CompletionCallback()); On 2016/08/03 20:06:03, CJ wrote: ...
4 years, 4 months ago (2016-08-09 01:40:33 UTC) #21
CJ
https://codereview.chromium.org/2161223003/diff/100001/blimp/client/feature/geolocation_feature.cc File blimp/client/feature/geolocation_feature.cc (right): https://codereview.chromium.org/2161223003/diff/100001/blimp/client/feature/geolocation_feature.cc#newcode104 blimp/client/feature/geolocation_feature.cc:104: net::CompletionCallback()); On 2016/08/09 01:40:33, Wez wrote: > On 2016/08/03 ...
4 years, 4 months ago (2016-08-09 21:40:38 UTC) #22
CJ
+ mcasas@chromium.org for DEPS
4 years, 4 months ago (2016-08-09 21:56:37 UTC) #29
Kevin M
https://codereview.chromium.org/2161223003/diff/180001/blimp/client/feature/geolocation_feature.cc File blimp/client/feature/geolocation_feature.cc (right): https://codereview.chromium.org/2161223003/diff/180001/blimp/client/feature/geolocation_feature.cc#newcode48 blimp/client/feature/geolocation_feature.cc:48: SetInterestLevel(set_level_message.level()); Can just inline line 47 here https://codereview.chromium.org/2161223003/diff/180001/blimp/client/feature/geolocation_feature.cc#newcode57 blimp/client/feature/geolocation_feature.cc:57: ...
4 years, 4 months ago (2016-08-09 22:08:55 UTC) #33
mcasas
On 2016/08/09 21:56:37, CJ wrote: > + mailto:mcasas@chromium.org for DEPS lgtm consider putting a specific ...
4 years, 4 months ago (2016-08-09 22:10:31 UTC) #34
CJ
https://codereview.chromium.org/2161223003/diff/180001/blimp/client/feature/geolocation_feature.cc File blimp/client/feature/geolocation_feature.cc (right): https://codereview.chromium.org/2161223003/diff/180001/blimp/client/feature/geolocation_feature.cc#newcode48 blimp/client/feature/geolocation_feature.cc:48: SetInterestLevel(set_level_message.level()); On 2016/08/09 22:08:55, Kevin M wrote: > Can ...
4 years, 4 months ago (2016-08-10 00:13:49 UTC) #39
CJ
On 2016/08/09 22:10:31, mcasas wrote: > On 2016/08/09 21:56:37, CJ wrote: > > + mailto:mcasas@chromium.org ...
4 years, 4 months ago (2016-08-10 00:16:03 UTC) #40
Kevin M
https://codereview.chromium.org/2161223003/diff/180001/blimp/client/feature/geolocation_feature_unittest.cc File blimp/client/feature/geolocation_feature_unittest.cc (right): https://codereview.chromium.org/2161223003/diff/180001/blimp/client/feature/geolocation_feature_unittest.cc#newcode74 blimp/client/feature/geolocation_feature_unittest.cc:74: protected: On 2016/08/10 00:13:49, CJ wrote: > On 2016/08/09 ...
4 years, 4 months ago (2016-08-10 23:23:34 UTC) #49
Wez
https://codereview.chromium.org/2161223003/diff/240001/blimp/client/feature/geolocation_feature.cc File blimp/client/feature/geolocation_feature.cc (right): https://codereview.chromium.org/2161223003/diff/240001/blimp/client/feature/geolocation_feature.cc#newcode149 blimp/client/feature/geolocation_feature.cc:149: OnLocationUpdate(location_provider_.get(), position); On 2016/08/10 23:23:34, Kevin M wrote: > ...
4 years, 4 months ago (2016-08-12 00:39:42 UTC) #50
CJ
https://codereview.chromium.org/2161223003/diff/180001/blimp/client/feature/geolocation_feature_unittest.cc File blimp/client/feature/geolocation_feature_unittest.cc (right): https://codereview.chromium.org/2161223003/diff/180001/blimp/client/feature/geolocation_feature_unittest.cc#newcode74 blimp/client/feature/geolocation_feature_unittest.cc:74: protected: On 2016/08/10 23:23:34, Kevin M wrote: > On ...
4 years, 4 months ago (2016-08-12 21:57:46 UTC) #52
CJ
4 years, 4 months ago (2016-08-12 21:57:51 UTC) #53
Kevin M
https://codereview.chromium.org/2161223003/diff/320001/blimp/client/BUILD.gn File blimp/client/BUILD.gn (right): https://codereview.chromium.org/2161223003/diff/320001/blimp/client/BUILD.gn#newcode113 blimp/client/BUILD.gn:113: "//device/geolocation:device_geolocation", Hm, this target should probably be named "geolocation", ...
4 years, 4 months ago (2016-08-15 20:35:40 UTC) #66
CJ
https://codereview.chromium.org/2161223003/diff/320001/blimp/client/BUILD.gn File blimp/client/BUILD.gn (right): https://codereview.chromium.org/2161223003/diff/320001/blimp/client/BUILD.gn#newcode113 blimp/client/BUILD.gn:113: "//device/geolocation:device_geolocation", On 2016/08/15 20:35:40, Kevin M wrote: > Hm, ...
4 years, 4 months ago (2016-08-15 21:59:32 UTC) #67
Kevin M
https://codereview.chromium.org/2161223003/diff/320001/blimp/client/feature/geolocation_feature_unittest.cc File blimp/client/feature/geolocation_feature_unittest.cc (right): https://codereview.chromium.org/2161223003/diff/320001/blimp/client/feature/geolocation_feature_unittest.cc#newcode166 blimp/client/feature/geolocation_feature_unittest.cc:166: ON_CALL(*out_processor_, MockableProcessMessage(_, _)) On 2016/08/15 21:59:32, CJ wrote: > ...
4 years, 4 months ago (2016-08-17 00:55:02 UTC) #68
CJ
https://codereview.chromium.org/2161223003/diff/320001/blimp/client/feature/geolocation_feature_unittest.cc File blimp/client/feature/geolocation_feature_unittest.cc (right): https://codereview.chromium.org/2161223003/diff/320001/blimp/client/feature/geolocation_feature_unittest.cc#newcode166 blimp/client/feature/geolocation_feature_unittest.cc:166: ON_CALL(*out_processor_, MockableProcessMessage(_, _)) On 2016/08/17 00:55:01, Kevin M wrote: ...
4 years, 4 months ago (2016-08-18 00:58:50 UTC) #69
Khushal
+nyquist, are we still adding code to feature?
4 years, 4 months ago (2016-08-18 01:13:23 UTC) #73
CJ
On 2016/08/18 01:13:23, Khushal wrote: > +nyquist, are we still adding code to feature? Hi! ...
4 years, 4 months ago (2016-08-18 17:21:40 UTC) #76
CJ
On 2016/08/18 01:13:23, Khushal wrote: > +nyquist, are we still adding code to feature? Hi! ...
4 years, 4 months ago (2016-08-18 17:21:46 UTC) #77
CJ
On 2016/08/18 17:21:46, CJ wrote: > On 2016/08/18 01:13:23, Khushal wrote: > > +nyquist, are ...
4 years, 4 months ago (2016-08-18 20:46:07 UTC) #78
nyquist
Just a couple of tiny things about the BUILD.gn files https://codereview.chromium.org/2161223003/diff/420001/blimp/client/core/geolocation/BUILD.gn File blimp/client/core/geolocation/BUILD.gn (right): https://codereview.chromium.org/2161223003/diff/420001/blimp/client/core/geolocation/BUILD.gn#newcode12 ...
4 years, 4 months ago (2016-08-18 22:12:30 UTC) #79
CJ
https://codereview.chromium.org/2161223003/diff/420001/blimp/client/core/geolocation/BUILD.gn File blimp/client/core/geolocation/BUILD.gn (right): https://codereview.chromium.org/2161223003/diff/420001/blimp/client/core/geolocation/BUILD.gn#newcode12 blimp/client/core/geolocation/BUILD.gn:12: "//blimp/client/*", On 2016/08/18 22:12:30, nyquist wrote: > For now ...
4 years, 4 months ago (2016-08-18 22:25:57 UTC) #80
Wez
Still some cleanup to do on the test side, but the implementation is looking great ...
4 years, 4 months ago (2016-08-19 18:50:26 UTC) #81
Kevin M
https://codereview.chromium.org/2161223003/diff/440001/blimp/client/core/geolocation/BUILD.gn File blimp/client/core/geolocation/BUILD.gn (right): https://codereview.chromium.org/2161223003/diff/440001/blimp/client/core/geolocation/BUILD.gn#newcode55 blimp/client/core/geolocation/BUILD.gn:55: "//device/geolocation:unittests", Remove this entry. Including other unit test groups ...
4 years, 4 months ago (2016-08-19 22:16:26 UTC) #82
CJ
https://codereview.chromium.org/2161223003/diff/440001/blimp/client/core/geolocation/geolocation_feature.cc File blimp/client/core/geolocation/geolocation_feature.cc (right): https://codereview.chromium.org/2161223003/diff/440001/blimp/client/core/geolocation/geolocation_feature.cc#newcode65 blimp/client/core/geolocation/geolocation_feature.cc:65: const device::Geoposition& position) { On 2016/08/19 18:50:25, Wez wrote: ...
4 years, 4 months ago (2016-08-19 22:22:34 UTC) #83
CJ
+ rogerta@ for '+google_apis' in blimp/client/core/geolocaton/DEPS https://codereview.chromium.org/2161223003/diff/440001/blimp/client/core/geolocation/BUILD.gn File blimp/client/core/geolocation/BUILD.gn (right): https://codereview.chromium.org/2161223003/diff/440001/blimp/client/core/geolocation/BUILD.gn#newcode55 blimp/client/core/geolocation/BUILD.gn:55: "//device/geolocation:unittests", On 2016/08/19 ...
4 years, 4 months ago (2016-08-19 22:50:06 UTC) #91
Wez
https://codereview.chromium.org/2161223003/diff/440001/device/geolocation/fake_location_provider.cc File device/geolocation/fake_location_provider.cc (right): https://codereview.chromium.org/2161223003/diff/440001/device/geolocation/fake_location_provider.cc#newcode66 device/geolocation/fake_location_provider.cc:66: class AutoFakeLocationProvider : public FakeLocationProvider { On 2016/08/19 22:22:34, ...
4 years, 4 months ago (2016-08-20 01:42:11 UTC) #94
Roger Tawa OOO till Jul 10th
lgtm for '+google_apis' in blimp/client/core/geolocaton/DEPS
4 years, 4 months ago (2016-08-22 13:15:59 UTC) #95
CJ
https://codereview.chromium.org/2161223003/diff/440001/device/geolocation/fake_location_provider.cc File device/geolocation/fake_location_provider.cc (right): https://codereview.chromium.org/2161223003/diff/440001/device/geolocation/fake_location_provider.cc#newcode66 device/geolocation/fake_location_provider.cc:66: class AutoFakeLocationProvider : public FakeLocationProvider { On 2016/08/20 01:42:11, ...
4 years, 4 months ago (2016-08-22 17:56:40 UTC) #96
Kevin M
lgtm https://codereview.chromium.org/2161223003/diff/500001/device/geolocation/geolocation_provider_impl_unittest.cc File device/geolocation/geolocation_provider_impl_unittest.cc (right): https://codereview.chromium.org/2161223003/diff/500001/device/geolocation/geolocation_provider_impl_unittest.cc#newcode119 device/geolocation/geolocation_provider_impl_unittest.cc:119: void GetProvidersStarted(bool* started); ! Please clean this up ...
4 years, 4 months ago (2016-08-22 19:54:27 UTC) #99
CJ
https://codereview.chromium.org/2161223003/diff/500001/device/geolocation/geolocation_provider_impl_unittest.cc File device/geolocation/geolocation_provider_impl_unittest.cc (right): https://codereview.chromium.org/2161223003/diff/500001/device/geolocation/geolocation_provider_impl_unittest.cc#newcode119 device/geolocation/geolocation_provider_impl_unittest.cc:119: void GetProvidersStarted(bool* started); On 2016/08/22 19:54:26, Kevin M wrote: ...
4 years, 4 months ago (2016-08-22 20:40:48 UTC) #102
Wez
https://codereview.chromium.org/2161223003/diff/500001/device/geolocation/geolocation_provider_impl_unittest.cc File device/geolocation/geolocation_provider_impl_unittest.cc (right): https://codereview.chromium.org/2161223003/diff/500001/device/geolocation/geolocation_provider_impl_unittest.cc#newcode119 device/geolocation/geolocation_provider_impl_unittest.cc:119: void GetProvidersStarted(bool* started); On 2016/08/22 20:40:48, CJ wrote: > ...
4 years, 4 months ago (2016-08-22 20:47:55 UTC) #103
CJ
On 2016/08/22 20:47:55, Wez wrote: > https://codereview.chromium.org/2161223003/diff/500001/device/geolocation/geolocation_provider_impl_unittest.cc > File device/geolocation/geolocation_provider_impl_unittest.cc (right): > > https://codereview.chromium.org/2161223003/diff/500001/device/geolocation/geolocation_provider_impl_unittest.cc#newcode119 > ...
4 years, 4 months ago (2016-08-22 21:09:52 UTC) #104
Wez
LGTM w/ nits. https://codereview.chromium.org/2161223003/diff/520001/device/geolocation/geolocation_provider_impl_unittest.cc File device/geolocation/geolocation_provider_impl_unittest.cc (right): https://codereview.chromium.org/2161223003/diff/520001/device/geolocation/geolocation_provider_impl_unittest.cc#newcode132 device/geolocation/geolocation_provider_impl_unittest.cc:132: bool started_; nit: Prefer is_started_ in ...
4 years, 4 months ago (2016-08-24 04:25:50 UTC) #105
CJ
https://codereview.chromium.org/2161223003/diff/520001/device/geolocation/geolocation_provider_impl_unittest.cc File device/geolocation/geolocation_provider_impl_unittest.cc (right): https://codereview.chromium.org/2161223003/diff/520001/device/geolocation/geolocation_provider_impl_unittest.cc#newcode132 device/geolocation/geolocation_provider_impl_unittest.cc:132: bool started_; On 2016/08/24 04:25:50, Wez wrote: > nit: ...
4 years, 4 months ago (2016-08-24 20:37:10 UTC) #106
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2161223003/560001
4 years, 3 months ago (2016-08-26 18:31:36 UTC) #109
commit-bot: I haz the power
Try jobs failed on following builders: ios-device on master.tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios-device/builds/59273) ios-simulator on master.tryserver.chromium.mac (JOB_FAILED, ...
4 years, 3 months ago (2016-08-26 18:36:27 UTC) #111
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2161223003/600001
4 years, 3 months ago (2016-08-26 19:23:51 UTC) #114
commit-bot: I haz the power
Committed patchset #31 (id:600001)
4 years, 3 months ago (2016-08-26 20:28:50 UTC) #116
commit-bot: I haz the power
4 years, 3 months ago (2016-08-26 20:30:26 UTC) #118
Message was sent while issue was closed.
Patchset 31 (id:??) landed as
https://crrev.com/7a376a1a71743b1b50c6fb9c206ffbb0ca8c8ba2
Cr-Commit-Position: refs/heads/master@{#414797}

Powered by Google App Engine
This is Rietveld 408576698