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

Issue 54323003: Base infrastructure for Networking Private API on Windows and Mac. (Closed)

Created:
7 years, 1 month ago by mef
Modified:
6 years, 8 months ago
CC:
chromium-reviews, chromium-apps-reviews_chromium.org, darin-cc_chromium.org, extensions-reviews_chromium.org
Visibility:
Public.

Description

Base infrastructure for Networking Private API on Windows and Mac. Based on https://codereview.chromium.org/22295002/, but moves WiFiService to components/ and runs it in browser process instead of utility process. Windows implementation is in http://crrev.com/68503019. BUG=267667 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=236752

Patch Set 1 #

Total comments: 12

Patch Set 2 : Addressed some codereview comments. #

Patch Set 3 : Address codereview comments. #

Total comments: 8

Patch Set 4 : Address jorgelo's comment. #

Total comments: 17

Patch Set 5 : Now with callback wrappers! #

Total comments: 3

Patch Set 6 : Changed WiFiService interface to be explicitly synchronous. #

Total comments: 5

Patch Set 7 : Tweak CryptoVerify interface to get rid of CryptoVerifyHelper. #

Patch Set 8 : Make NetworkingPrivateServiceClient passed as weak pointer instead of refcount. #

Total comments: 4

Patch Set 9 : Make ShutdownWiFiServiceOnWorkerThread a standalone function. #

Total comments: 9

Patch Set 10 : Address codereview comments. #

Patch Set 11 : Track ToT. #

Total comments: 31

Patch Set 12 : Sync up to r235223 #

Patch Set 13 : Fix ChromeOS compilation error. #

Patch Set 14 : Removed unused 'CheckServiceError()'. #

Total comments: 25

Patch Set 15 : Address code review comments. #

Total comments: 26

Patch Set 16 : Address codereview comments. #

Patch Set 17 : Sync to r236038 #

Total comments: 4

Patch Set 18 : Address joi's comments. #

Total comments: 23

Patch Set 19 : Address comments from joi@ and stevenjb@. #

Total comments: 2

Patch Set 20 : Address jam's and stevenjb's nits. #

Patch Set 21 : Fix compilation error on Android and ChromeOS. #

Total comments: 1

Patch Set 22 : Address jorgelo's comment. #

Patch Set 23 : Sync up to r236620 #

Total comments: 7
Unified diffs Side-by-side diffs Delta from patch set Stats (+1809 lines, -299 lines) Patch
M chrome/browser/extensions/api/networking_private/DEPS View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/extensions/api/networking_private/networking_private_api.h View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +4 lines, -2 lines 0 comments Download
M chrome/browser/extensions/api/networking_private/networking_private_api_chromeos.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/extensions/api/networking_private/networking_private_api_nonchromeos.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 9 chunks +170 lines, -192 lines 0 comments Download
M chrome/browser/extensions/api/networking_private/networking_private_apitest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 7 chunks +62 lines, -11 lines 0 comments Download
M chrome/browser/extensions/api/networking_private/networking_private_crypto.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +2 lines, -2 lines 0 comments Download
M chrome/browser/extensions/api/networking_private/networking_private_crypto.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +0 lines, -1 line 0 comments Download
M chrome/browser/extensions/api/networking_private/networking_private_crypto_unittest.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +1 line, -2 lines 0 comments Download
M chrome/browser/extensions/api/networking_private/networking_private_event_router.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +7 lines, -30 lines 0 comments Download
M chrome/browser/extensions/api/networking_private/networking_private_event_router_chromeos.cc View 1 2 3 4 5 6 7 8 9 10 5 chunks +75 lines, -29 lines 0 comments Download
M chrome/browser/extensions/api/networking_private/networking_private_event_router_factory.h View 1 2 3 4 5 6 7 8 9 10 2 chunks +2 lines, -2 lines 0 comments Download
M chrome/browser/extensions/api/networking_private/networking_private_event_router_factory.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 4 chunks +7 lines, -7 lines 0 comments Download
A chrome/browser/extensions/api/networking_private/networking_private_event_router_nonchromeos.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +157 lines, -0 lines 0 comments Download
A chrome/browser/extensions/api/networking_private/networking_private_service_client.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +239 lines, -0 lines 0 comments Download
A chrome/browser/extensions/api/networking_private/networking_private_service_client.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +470 lines, -0 lines 0 comments Download
A chrome/browser/extensions/api/networking_private/networking_private_service_client_factory.h View 1 2 3 4 5 6 7 1 chunk +41 lines, -0 lines 0 comments Download
A chrome/browser/extensions/api/networking_private/networking_private_service_client_factory.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +57 lines, -0 lines 0 comments Download
M chrome/browser/profiles/chrome_browser_main_extra_parts_profiles.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 4 chunks +4 lines, -4 lines 0 comments Download
M chrome/chrome_browser_extensions.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 6 chunks +24 lines, -10 lines 0 comments Download
M chrome/chrome_tests.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 2 chunks +5 lines, -1 line 0 comments Download
M chrome/chrome_tests_unit.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 2 chunks +1 line, -1 line 0 comments Download
M chrome/common/extensions/api/networking_private.json View 1 2 3 4 5 6 7 8 9 10 1 chunk +1 line, -0 lines 0 comments Download
M components/OWNERS View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +2 lines, -0 lines 0 comments Download
M components/components.gyp View 1 chunk +1 line, -0 lines 0 comments Download
A + components/wifi.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 19 1 chunk +7 lines, -5 lines 7 comments Download
A + components/wifi/DEPS View 1 2 3 4 5 6 7 8 9 10 0 chunks +-1 lines, --1 lines 0 comments Download
A components/wifi/OWNERS View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +1 line, -0 lines 0 comments Download
A components/wifi/fake_wifi_service.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +208 lines, -0 lines 0 comments Download
A components/wifi/wifi_export.h View 1 chunk +29 lines, -0 lines 0 comments Download
A components/wifi/wifi_service.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +119 lines, -0 lines 0 comments Download
A components/wifi/wifi_service.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +105 lines, -0 lines 0 comments Download
M tools/json_schema_compiler/cpp_bundle_generator.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +7 lines, -1 line 0 comments Download

Messages

Total messages: 61 (0 generated)
mef
Hi, this CL is based on https://codereview.chromium.org/22295002/. I've changed WiFiService to run in browser process ...
7 years, 1 month ago (2013-11-01 20:47:47 UTC) #1
cbentzel
It looks like this is a diff relative to the "Base Infrastructure" CL rather than ...
7 years, 1 month ago (2013-11-02 13:58:21 UTC) #2
mef
On 2013/11/02 13:58:21, cbentzel wrote: > It looks like this is a diff relative to ...
7 years, 1 month ago (2013-11-02 14:23:53 UTC) #3
mef
On 2013/11/02 14:23:53, mef wrote: > On 2013/11/02 13:58:21, cbentzel wrote: > > It looks ...
7 years, 1 month ago (2013-11-05 21:03:02 UTC) #4
tbarzic
https://codereview.chromium.org/54323003/diff/1/chrome/browser/extensions/api/networking_private/networking_private_service_client.cc File chrome/browser/extensions/api/networking_private/networking_private_service_client.cc (right): https://codereview.chromium.org/54323003/diff/1/chrome/browser/extensions/api/networking_private/networking_private_service_client.cc#newcode241 chrome/browser/extensions/api/networking_private/networking_private_service_client.cc:241: wifi_service->GetVisibleNetworks( why do you need to get visible networks ...
7 years, 1 month ago (2013-11-05 21:24:34 UTC) #5
mef
Hi guys, PTAL. I've addressed Toni's comments. Unfortunately I think at this point code complexity ...
7 years, 1 month ago (2013-11-07 16:06:07 UTC) #6
Jorge Lucangeli Obes
Why do you think this is more complicated than before? https://codereview.chromium.org/54323003/diff/300001/chrome/browser/extensions/api/networking_private/networking_private_service_client.cc File chrome/browser/extensions/api/networking_private/networking_private_service_client.cc (right): https://codereview.chromium.org/54323003/diff/300001/chrome/browser/extensions/api/networking_private/networking_private_service_client.cc#newcode21 ...
7 years, 1 month ago (2013-11-08 22:25:37 UTC) #7
mef
jorgelo@ - I'm not saying that it is more complicated than with utility process, but ...
7 years, 1 month ago (2013-11-08 22:35:56 UTC) #8
tbarzic
https://codereview.chromium.org/54323003/diff/300001/chrome/browser/extensions/api/networking_private/networking_private_service_client.cc File chrome/browser/extensions/api/networking_private/networking_private_service_client.cc (right): https://codereview.chromium.org/54323003/diff/300001/chrome/browser/extensions/api/networking_private/networking_private_service_client.cc#newcode249 chrome/browser/extensions/api/networking_private/networking_private_service_client.cc:249: // Get current list of Visible Networks, so |NetworkScanReply| ...
7 years, 1 month ago (2013-11-09 03:09:40 UTC) #9
cbentzel
I think a lot of the complexity revolves around posting callbacks that refer to the ...
7 years, 1 month ago (2013-11-09 16:43:43 UTC) #10
cbentzel
We chatted about this at the whiteboard which is way easier than over email... On ...
7 years, 1 month ago (2013-11-11 16:34:39 UTC) #11
mef
Hi guys, PTAL. Per discussion with Chris I've done the following changes to NetworkingPrivateServiceClient: - ...
7 years, 1 month ago (2013-11-11 22:02:53 UTC) #12
cbentzel
I'll do a review in the early morning. https://codereview.chromium.org/54323003/diff/450001/chrome/browser/extensions/api/networking_private/networking_private_service_client.h File chrome/browser/extensions/api/networking_private/networking_private_service_client.h (right): https://codereview.chromium.org/54323003/diff/450001/chrome/browser/extensions/api/networking_private/networking_private_service_client.h#newcode49 chrome/browser/extensions/api/networking_private/networking_private_service_client.h:49: : ...
7 years, 1 month ago (2013-11-12 01:12:25 UTC) #13
tbarzic
Hm, I think this could be simplified even more if the way callbacks from wifi_service ...
7 years, 1 month ago (2013-11-12 04:02:22 UTC) #14
tbarzic
Though, PostTaskAndReply makes more sense with crypto_verify tasks :/
7 years, 1 month ago (2013-11-12 04:09:00 UTC) #15
cbentzel
On 2013/11/12 04:02:22, tbarzic wrote: > Hm, I think this could be simplified even more ...
7 years, 1 month ago (2013-11-12 10:52:10 UTC) #16
tbarzic
The problem with leaking ExtensionFunctions could be solved by overriding ShutdownOnUIThread to clear the callbacks ...
7 years, 1 month ago (2013-11-12 18:14:46 UTC) #17
mef
Hi, PTAL. I bit the bullet and changed WiFiService interface to be explicitly synchronous, which ...
7 years, 1 month ago (2013-11-12 19:51:16 UTC) #18
tbarzic
cool, this looks much nicer :) I'll take a closer look when you finish it ...
7 years, 1 month ago (2013-11-12 20:14:59 UTC) #19
mef
Hi guys, PTAL. I've tweaked CryptoVerify interface and got rid of CryptoVerifyHelper. I've also tried ...
7 years, 1 month ago (2013-11-13 00:07:36 UTC) #20
tbarzic
replied inline On 2013/11/13 00:07:36, mef wrote: > Hi guys, PTAL. > > I've tweaked ...
7 years, 1 month ago (2013-11-13 01:27:10 UTC) #21
mef
Thanks a lot, Toni! That have fixed the issue. PTAL, I believe all outstanding comments ...
7 years, 1 month ago (2013-11-13 03:44:36 UTC) #22
cbentzel
High-level object/threading architecture looks nice now, thanks for going through so many iterations! Toni - ...
7 years, 1 month ago (2013-11-13 11:34:39 UTC) #23
mef
If this looks OK, then I think it would make sense for me to merge ...
7 years, 1 month ago (2013-11-13 15:51:04 UTC) #24
tbarzic
I think it would be reasonable to continue with the diff from ToT (but I'd ...
7 years, 1 month ago (2013-11-14 05:28:36 UTC) #25
mef
Thanks, Toni! PTAL, I've addressed your comments and changed this CL to diff against ToT. ...
7 years, 1 month ago (2013-11-14 16:15:31 UTC) #26
mef
On 2013/11/14 16:15:31, mef wrote: > Thanks, Toni! PTAL, I've addressed your comments and changed ...
7 years, 1 month ago (2013-11-14 16:24:37 UTC) #27
mef
Ping. Toni, could you please take a look and let me know whether this puppy ...
7 years, 1 month ago (2013-11-15 16:41:04 UTC) #28
tbarzic
looks good. Mostly minor (nitpicking) comments https://codereview.chromium.org/54323003/diff/780001/chrome/browser/extensions/api/networking_private/networking_private_service_client.cc File chrome/browser/extensions/api/networking_private/networking_private_service_client.cc (right): https://codereview.chromium.org/54323003/diff/780001/chrome/browser/extensions/api/networking_private/networking_private_service_client.cc#newcode426 chrome/browser/extensions/api/networking_private/networking_private_service_client.cc:426: ServiceCallbacks* service_callbacks = ...
7 years, 1 month ago (2013-11-15 22:56:29 UTC) #29
cbentzel
LGTM I just have nits at this point. The design and implementation look good at ...
7 years, 1 month ago (2013-11-16 02:28:04 UTC) #30
mef
Hi guys, thanks for your comments, PTAL. https://codereview.chromium.org/54323003/diff/850001/chrome/browser/extensions/api/networking_private/networking_private_apitest.cc File chrome/browser/extensions/api/networking_private/networking_private_apitest.cc (right): https://codereview.chromium.org/54323003/diff/850001/chrome/browser/extensions/api/networking_private/networking_private_apitest.cc#newcode35 chrome/browser/extensions/api/networking_private/networking_private_apitest.cc:35: using chromeos::DBusMethodCallStatus; ...
7 years, 1 month ago (2013-11-17 20:05:16 UTC) #31
jam
On 2013/11/17 20:05:16, mef wrote: > Hi guys, thanks for your comments, PTAL. which parts ...
7 years, 1 month ago (2013-11-18 05:52:30 UTC) #32
tbarzic
lgtm with few nits https://codereview.chromium.org/54323003/diff/850001/chrome/browser/extensions/api/networking_private/networking_private_service_client.cc File chrome/browser/extensions/api/networking_private/networking_private_service_client.cc (right): https://codereview.chromium.org/54323003/diff/850001/chrome/browser/extensions/api/networking_private/networking_private_service_client.cc#newcode116 chrome/browser/extensions/api/networking_private/networking_private_service_client.cc:116: BrowserThread::GetMessageLoopProxyForThread(BrowserThread::UI), On 2013/11/17 20:05:18, mef ...
7 years, 1 month ago (2013-11-19 00:05:43 UTC) #33
mef
Hi guys, I would like to humbly ask for OWNER review of these changes: erg@ ...
7 years, 1 month ago (2013-11-19 17:37:02 UTC) #34
Jói
LGTM for //components, just a couple of nits. Also, you should add a //components/wifi/OWNERS file ...
7 years, 1 month ago (2013-11-20 11:04:16 UTC) #35
Finnur
> finnur@ - chrome/common/extensions/api/networking_private.json (make it > available on "win"). You mean 'ChromeOS' an 'win'. ...
7 years, 1 month ago (2013-11-20 13:57:29 UTC) #36
mef
Thanks Joi and Finnur! Joi, I've added you as an owner to //components/wifi. I would ...
7 years, 1 month ago (2013-11-20 16:19:34 UTC) #37
Jói
https://codereview.chromium.org/54323003/diff/1710001/components/wifi/OWNERS File components/wifi/OWNERS (right): https://codereview.chromium.org/54323003/diff/1710001/components/wifi/OWNERS#newcode1 components/wifi/OWNERS:1: joi@chromium.org You should add yourself and perhaps one or ...
7 years, 1 month ago (2013-11-20 16:21:35 UTC) #38
stevenjb
https://codereview.chromium.org/54323003/diff/1710001/chrome/browser/extensions/api/networking_private/networking_private_event_router_nonchromeos.cc File chrome/browser/extensions/api/networking_private/networking_private_event_router_nonchromeos.cc (right): https://codereview.chromium.org/54323003/diff/1710001/chrome/browser/extensions/api/networking_private/networking_private_event_router_nonchromeos.cc#newcode81 chrome/browser/extensions/api/networking_private/networking_private_event_router_nonchromeos.cc:81: if (listening_) { nit: early exit https://codereview.chromium.org/54323003/diff/1710001/chrome/browser/extensions/api/networking_private/networking_private_event_router_nonchromeos.cc#newcode104 chrome/browser/extensions/api/networking_private/networking_private_event_router_nonchromeos.cc:104: if ...
7 years, 1 month ago (2013-11-20 18:55:38 UTC) #39
mef
Thanks Joi and Steven, PTAL! I would like to humbly ask for OWNER review of ...
7 years, 1 month ago (2013-11-20 20:33:25 UTC) #40
Jói
Thanks. //components LGTM.
7 years, 1 month ago (2013-11-20 20:34:54 UTC) #41
Elliot Glaysher
profiles lgtm
7 years, 1 month ago (2013-11-20 20:55:08 UTC) #42
stevenjb
chrome/browser/extensions/api/networking_private/ lgtm w/ added dcheck + comment. https://codereview.chromium.org/54323003/diff/1710001/chrome/browser/extensions/api/networking_private/networking_private_service_client.cc File chrome/browser/extensions/api/networking_private/networking_private_service_client.cc (right): https://codereview.chromium.org/54323003/diff/1710001/chrome/browser/extensions/api/networking_private/networking_private_service_client.cc#newcode115 chrome/browser/extensions/api/networking_private/networking_private_service_client.cc:115: base::Unretained(wifi_service_.get()), On ...
7 years, 1 month ago (2013-11-20 22:01:11 UTC) #43
jam
On 2013/11/20 20:33:25, mef wrote: > Thanks Joi and Steven, PTAL! > > I would ...
7 years, 1 month ago (2013-11-21 19:01:29 UTC) #44
mef
Steven, thanks! John, thanks! Overall CL was FYI to demonstrate that I've heeded your advice ...
7 years, 1 month ago (2013-11-21 21:15:44 UTC) #45
Jorge Lucangeli Obes
lgtm with the #include nit. https://codereview.chromium.org/54323003/diff/1970002/chrome/browser/extensions/api/networking_private/networking_private_api_nonchromeos.cc File chrome/browser/extensions/api/networking_private/networking_private_api_nonchromeos.cc (right): https://codereview.chromium.org/54323003/diff/1970002/chrome/browser/extensions/api/networking_private/networking_private_api_nonchromeos.cc#newcode12 chrome/browser/extensions/api/networking_private/networking_private_api_nonchromeos.cc:12: #include "base/strings/stringprintf.h" Are you ...
7 years, 1 month ago (2013-11-21 21:53:38 UTC) #46
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mef@chromium.org/54323003/2230001
7 years, 1 month ago (2013-11-21 23:07:51 UTC) #47
commit-bot: I haz the power
Failed to apply patch for chrome/browser/extensions/api/networking_private/networking_private_api_nonchromeos.cc: While running patch -p1 --forward --force --no-backup-if-mismatch; patching file ...
7 years, 1 month ago (2013-11-21 23:08:03 UTC) #48
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mef@chromium.org/54323003/2230002
7 years, 1 month ago (2013-11-22 01:07:27 UTC) #49
commit-bot: I haz the power
Retried try job too often on linux_rel for step(s) browser_tests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=linux_rel&number=193630
7 years, 1 month ago (2013-11-22 03:05:30 UTC) #50
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mef@chromium.org/54323003/2230002
7 years, 1 month ago (2013-11-22 03:11:26 UTC) #51
commit-bot: I haz the power
Retried try job too often on linux_rel for step(s) browser_tests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=linux_rel&number=193714
7 years, 1 month ago (2013-11-22 05:28:24 UTC) #52
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mef@chromium.org/54323003/2230002
7 years, 1 month ago (2013-11-22 12:01:03 UTC) #53
commit-bot: I haz the power
Change committed as 236752
7 years, 1 month ago (2013-11-22 12:44:44 UTC) #54
tfarina
https://codereview.chromium.org/54323003/diff/2230002/components/wifi.gypi File components/wifi.gypi (right): https://codereview.chromium.org/54323003/diff/2230002/components/wifi.gypi#newcode24 components/wifi.gypi:24: 'wifi/fake_wifi_service.cc', this is including test code in production code.
6 years, 8 months ago (2014-04-18 00:46:53 UTC) #55
mef
https://codereview.chromium.org/54323003/diff/2230002/components/wifi.gypi File components/wifi.gypi (right): https://codereview.chromium.org/54323003/diff/2230002/components/wifi.gypi#newcode24 components/wifi.gypi:24: 'wifi/fake_wifi_service.cc', On 2014/04/18 00:46:54, tfarina wrote: > this is ...
6 years, 8 months ago (2014-04-18 14:57:39 UTC) #56
tfarina
https://codereview.chromium.org/54323003/diff/2230002/components/wifi.gypi File components/wifi.gypi (right): https://codereview.chromium.org/54323003/diff/2230002/components/wifi.gypi#newcode24 components/wifi.gypi:24: 'wifi/fake_wifi_service.cc', On 2014/04/18 14:57:40, mef wrote: > On 2014/04/18 ...
6 years, 8 months ago (2014-04-18 15:28:06 UTC) #57
tfarina
https://codereview.chromium.org/54323003/diff/2230002/components/wifi.gypi File components/wifi.gypi (right): https://codereview.chromium.org/54323003/diff/2230002/components/wifi.gypi#newcode12 components/wifi.gypi:12: '../components/components.gyp:onc_component', also, this path is "wrong", you don't need ...
6 years, 8 months ago (2014-04-18 15:30:36 UTC) #58
tfarina
https://codereview.chromium.org/54323003/diff/2230002/components/wifi.gypi File components/wifi.gypi (right): https://codereview.chromium.org/54323003/diff/2230002/components/wifi.gypi#newcode12 components/wifi.gypi:12: '../components/components.gyp:onc_component', On 2014/04/18 15:30:37, tfarina wrote: > also, this ...
6 years, 8 months ago (2014-04-18 15:35:16 UTC) #59
mef
https://codereview.chromium.org/54323003/diff/2230002/components/wifi.gypi File components/wifi.gypi (right): https://codereview.chromium.org/54323003/diff/2230002/components/wifi.gypi#newcode12 components/wifi.gypi:12: '../components/components.gyp:onc_component', On 2014/04/18 15:35:17, tfarina wrote: > On 2014/04/18 ...
6 years, 8 months ago (2014-04-18 15:38:24 UTC) #60
mef
6 years, 8 months ago (2014-04-18 15:38:29 UTC) #61
Message was sent while issue was closed.

          

Powered by Google App Engine
This is Rietveld 408576698