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

Issue 13270005: Display DNS probe results. (Closed)

Created:
7 years, 8 months ago by Deprecated (see juliatuttle)
Modified:
7 years, 1 month ago
CC:
chromium-reviews, cbentzel+watch_chromium.org
Base URL:
http://git.chromium.org/chromium/src.git@master
Visibility:
Public.

Description

Display DNS probe results. 1. Modify the browser-side NetErrorTabHelper to send extra messages when it starts or declines to start a DNS probe. 2. Create a new error domain, "dnsprobe", with errors for "might run a DNS probe", "currently running a DNS probe", and all of the possible probe results. 3. Modify ChromeContentRendererClient to give the renderer-side NetErrorHelper a chance to choose the error strings before we call LocalizedError directly. 4. Catch DNS errors and provide the strings for the "might run a DNS probe" pseudo-error instead. 5. Add a function to neterror.html that lets us re-render the template with a new set of strings. 6. When we get a "probe started" message, replace the strings with those for the "currently running a DNS probe" pseudo-error. 7. When we get a "probe finished" message, replace the strings with those for the probe result. 8. When we get a "probe not run" message, replace the strings with those for the original error we received. BUG=156415 TEST=DnsProbeBrowserTest Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=211950

Patch Set 1 #

Total comments: 33

Patch Set 2 : Round two. #

Total comments: 42

Patch Set 3 : #

Patch Set 4 : Fix unittest #

Patch Set 5 : Add part of a browser test #

Patch Set 6 : More work on browsertest #

Patch Set 7 : Make fewer assumptions and more noise, so we are robust with Link Doctor #

Patch Set 8 : More work on browsertests #

Patch Set 9 : Fix DnsProbeService unittest #

Patch Set 10 : Rebase and fix a couple of things #

Patch Set 11 : rebase and fix one thing #

Patch Set 12 : Fix dns_probe_service_unittest #

Patch Set 13 : Fix FilePath initalization on Windows #

Total comments: 38

Patch Set 14 : Add half-baked DnsProbeRunner for debugging #

Patch Set 15 : First try at DnsProbeRunner #

Patch Set 16 : rebase #

Patch Set 17 : Fix up tests #

Patch Set 18 : sigh #

Patch Set 19 : unit tests for NetError{,Tab}Helper #

Patch Set 20 : unit tests for NetError{Tab,}Helper #

Patch Set 21 : ...actually add the unittests #

Total comments: 23

Patch Set 22 : Refactor a bit again (DnsProbeRunner is now tied to a single DnsClient), other fixes #

Total comments: 134

Patch Set 23 : rebase onto lkgr #

Patch Set 24 : Tweak things, clean up unit tests #

Total comments: 60

Patch Set 25 : Rework NetErrorHelper state machine a little #

Total comments: 30

Patch Set 26 : Make browser test less flaky #

Patch Set 27 : Fix browser test nits #

Total comments: 31

Patch Set 28 : Fix more browser test issues #

Total comments: 27

Patch Set 29 : Fix moar nits #

Total comments: 56

Patch Set 30 : #

Patch Set 31 : #

Total comments: 2

Patch Set 32 : Don't break DnsProbe histograms #

Total comments: 45

Patch Set 33 : #

Total comments: 30

Patch Set 34 : rebase #

Patch Set 35 : #

Patch Set 36 : #

Total comments: 33

Patch Set 37 : #

Total comments: 6

Patch Set 38 : fix style nits #

Total comments: 9

Patch Set 39 : Fix jhawkins' issues #

Patch Set 40 : Fix one last nit #

Unified diffs Side-by-side diffs Delta from patch set Stats (+2535 lines, -1326 lines) Patch
M chrome/app/generated_resources.grd View 2 chunks +8 lines, -0 lines 0 comments Download
A chrome/browser/net/dns_probe_browsertest.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 30 31 32 33 34 35 36 1 chunk +535 lines, -0 lines 0 comments Download
D chrome/browser/net/dns_probe_job.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +0 lines, -55 lines 0 comments Download
D chrome/browser/net/dns_probe_job.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 30 31 1 chunk +0 lines, -236 lines 0 comments Download
D chrome/browser/net/dns_probe_job_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +0 lines, -127 lines 0 comments Download
A chrome/browser/net/dns_probe_runner.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 30 31 32 33 1 chunk +85 lines, -0 lines 0 comments Download
A chrome/browser/net/dns_probe_runner.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 30 31 32 33 1 chunk +143 lines, -0 lines 0 comments Download
A chrome/browser/net/dns_probe_runner_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 +95 lines, -0 lines 0 comments Download
M chrome/browser/net/dns_probe_service.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 30 31 1 chunk +35 lines, -43 lines 0 comments Download
M chrome/browser/net/dns_probe_service.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 30 31 32 33 34 35 36 4 chunks +154 lines, -238 lines 0 comments Download
M chrome/browser/net/dns_probe_service_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 30 31 32 33 34 35 36 2 chunks +76 lines, -163 lines 0 comments Download
A chrome/browser/net/dns_probe_test_util.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 +21 lines, -0 lines 0 comments Download
A chrome/browser/net/dns_probe_test_util.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 30 31 32 1 chunk +37 lines, -0 lines 0 comments Download
M chrome/browser/net/net_error_tab_helper.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 30 31 32 33 3 chunks +42 lines, -24 lines 0 comments Download
M chrome/browser/net/net_error_tab_helper.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 30 31 32 33 34 35 36 37 7 chunks +81 lines, -85 lines 0 comments Download
A chrome/browser/net/net_error_tab_helper_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 30 31 32 33 34 35 36 37 1 chunk +392 lines, -0 lines 0 comments Download
M chrome/chrome_browser.gypi 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 30 31 32 33 34 35 36 1 chunk +2 lines, -2 lines 0 comments Download
M chrome/chrome_common.gypi 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 30 31 32 33 34 1 chunk +2 lines, -2 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 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +1 line, -0 lines 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 23 24 25 26 27 28 29 30 31 32 33 34 35 36 4 chunks +5 lines, -2 lines 0 comments Download
M chrome/common/localized_error.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 30 31 32 33 4 chunks +59 lines, -0 lines 0 comments Download
M chrome/common/net/net_error_info.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 30 31 32 33 34 35 36 37 38 1 chunk +60 lines, -5 lines 0 comments Download
A chrome/common/net/net_error_info.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 30 31 32 33 34 35 36 1 chunk +48 lines, -0 lines 0 comments Download
D chrome/common/net/net_error_tracker.h View 1 2 3 4 5 6 1 chunk +0 lines, -66 lines 0 comments Download
D chrome/common/net/net_error_tracker.cc View 1 2 3 4 5 6 1 chunk +0 lines, -66 lines 0 comments Download
D chrome/common/net/net_error_tracker_unittest.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -98 lines 0 comments Download
M chrome/common/render_messages.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 30 31 32 33 34 1 chunk +1 line, -1 line 0 comments Download
M chrome/renderer/chrome_content_renderer_client.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 30 31 32 33 2 chunks +8 lines, -6 lines 0 comments Download
M chrome/renderer/net/net_error_helper.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 30 31 32 33 34 35 36 37 38 39 2 chunks +63 lines, -7 lines 0 comments Download
M chrome/renderer/net/net_error_helper.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 30 31 32 33 34 35 36 4 chunks +164 lines, -100 lines 0 comments Download
A chrome/renderer/net/net_error_helper_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 30 31 32 33 34 35 1 chunk +412 lines, -0 lines 0 comments Download
M chrome/renderer/resources/neterror.html 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 1 chunk +6 lines, -0 lines 0 comments Download

Messages

Total messages: 68 (0 generated)
Deprecated (see juliatuttle)
PTAL, mmenke.
7 years, 8 months ago (2013-03-29 19:57:49 UTC) #1
mmenke
https://codereview.chromium.org/13270005/diff/1/chrome/browser/net/net_error_tab_helper.cc File chrome/browser/net/net_error_tab_helper.cc (right): https://codereview.chromium.org/13270005/diff/1/chrome/browser/net/net_error_tab_helper.cc#newcode239 chrome/browser/net/net_error_tab_helper.cc:239: { nit: "{" should go on previous line. https://codereview.chromium.org/13270005/diff/1/chrome/chrome_common.gypi ...
7 years, 8 months ago (2013-04-01 17:44:12 UTC) #2
Deprecated (see juliatuttle)
PTAL, mmenke. Still have todos, in the issue description. https://chromiumcodereview.appspot.com/13270005/diff/1/chrome/browser/net/net_error_tab_helper.cc File chrome/browser/net/net_error_tab_helper.cc (right): https://chromiumcodereview.appspot.com/13270005/diff/1/chrome/browser/net/net_error_tab_helper.cc#newcode239 chrome/browser/net/net_error_tab_helper.cc:239: ...
7 years, 8 months ago (2013-04-09 20:35:49 UTC) #3
mmenke
I'll get to this this afternoon.
7 years, 8 months ago (2013-04-10 13:16:16 UTC) #4
mmenke
Bunch more comments. I still want to take a closer look at this later today, ...
7 years, 8 months ago (2013-04-10 16:56:58 UTC) #5
Deprecated (see juliatuttle)
PTAL, mmenke. It looks like the suggestions do work; the problem was that the case ...
7 years, 8 months ago (2013-04-10 23:42:31 UTC) #6
mmenke
Sorry I didn't get around to taking a more thorough look yesterday. I have a ...
7 years, 8 months ago (2013-04-11 13:48:04 UTC) #7
mmenke
On 2013/04/11 13:48:04, mmenke wrote: > Sorry I didn't get around to taking a more ...
7 years, 8 months ago (2013-04-12 14:27:12 UTC) #8
Deprecated (see juliatuttle)
PTAL, mmenke.
7 years, 7 months ago (2013-05-22 21:41:44 UTC) #9
mmenke
On 2013/05/22 21:41:44, ttuttle wrote: > PTAL, mmenke. Between another big review and investigating the ...
7 years, 7 months ago (2013-05-23 16:19:55 UTC) #10
mmenke
Still reading through the code, but wanted to get you some comments today. All of ...
7 years, 6 months ago (2013-05-28 18:20:13 UTC) #11
Deprecated (see juliatuttle)
PTAL, mmenke. (I'm working on NetError{,Tab}Helper unittests; any feedback you can provide in parallel would ...
7 years, 6 months ago (2013-06-05 21:01:46 UTC) #12
Deprecated (see juliatuttle)
Bringing in jhawkins to get OWNERS review started. Please look at everything but chrome/browser/net and ...
7 years, 6 months ago (2013-06-06 21:10:55 UTC) #13
szym
Only reviewed dns_probe_runner* I suggest splitting it for public/system, passing DnsClient into DnsProbeRunner (DnsProbeRunnerImpl) ctor, ...
7 years, 6 months ago (2013-06-07 19:31:27 UTC) #14
szym
On second thought, don't create pure-virtual DnsProbeRunner. I think DnsProbeRunner::SetClient(scoped_ptr<DnsClient>) and DnsProbeService::SetSystemClient(scoped_ptr<DnsClient>) will suffice. DnsClient ...
7 years, 6 months ago (2013-06-07 19:40:27 UTC) #15
cbentzel
Tiny driveby nits. https://chromiumcodereview.appspot.com/13270005/diff/123001/chrome/browser/net/dns_probe_runner.h File chrome/browser/net/dns_probe_runner.h (right): https://chromiumcodereview.appspot.com/13270005/diff/123001/chrome/browser/net/dns_probe_runner.h#newcode20 chrome/browser/net/dns_probe_runner.h:20: } Should this be in chrome_browser_net ...
7 years, 6 months ago (2013-06-10 17:10:00 UTC) #16
cbentzel
On 2013/06/10 17:10:00, cbentzel wrote: > Tiny driveby nits. > > https://chromiumcodereview.appspot.com/13270005/diff/123001/chrome/browser/net/dns_probe_runner.h > File chrome/browser/net/dns_probe_runner.h ...
7 years, 6 months ago (2013-06-10 17:13:09 UTC) #17
cbentzel
On 2013/06/10 17:10:00, cbentzel wrote: > Tiny driveby nits. > > https://chromiumcodereview.appspot.com/13270005/diff/123001/chrome/browser/net/dns_probe_runner.h > File chrome/browser/net/dns_probe_runner.h ...
7 years, 6 months ago (2013-06-10 17:13:11 UTC) #18
Deprecated (see juliatuttle)
On 2013/06/10 17:13:11, cbentzel wrote: > On 2013/06/10 17:10:00, cbentzel wrote: > > Tiny driveby ...
7 years, 6 months ago (2013-06-11 01:07:14 UTC) #19
Deprecated (see juliatuttle)
PTAL mmenke (and whoever else is interested). https://chromiumcodereview.appspot.com/13270005/diff/123001/chrome/browser/net/dns_probe_runner.cc File chrome/browser/net/dns_probe_runner.cc (right): https://chromiumcodereview.appspot.com/13270005/diff/123001/chrome/browser/net/dns_probe_runner.cc#newcode91 chrome/browser/net/dns_probe_runner.cc:91: InitializeSystemClient(); On ...
7 years, 6 months ago (2013-06-11 01:07:33 UTC) #20
mmenke
A bunch of minor comments. Still working my way through the code. I'm going to ...
7 years, 6 months ago (2013-06-11 16:15:35 UTC) #21
mmenke
More mostly nit-level comments - Still reviewing the renderer-side stuff, and haven't yet touched the ...
7 years, 6 months ago (2013-06-12 19:17:12 UTC) #22
Deprecated (see juliatuttle)
Fixed everything suggested so far. https://chromiumcodereview.appspot.com/13270005/diff/140001/chrome/browser/net/dns_probe_runner.cc File chrome/browser/net/dns_probe_runner.cc (right): https://chromiumcodereview.appspot.com/13270005/diff/140001/chrome/browser/net/dns_probe_runner.cc#newcode8 chrome/browser/net/dns_probe_runner.cc:8: #include "base/memory/scoped_ptr.h" On 2013/06/11 ...
7 years, 6 months ago (2013-06-13 14:37:03 UTC) #23
mmenke
https://chromiumcodereview.appspot.com/13270005/diff/140001/chrome/browser/net/dns_probe_runner.cc File chrome/browser/net/dns_probe_runner.cc (right): https://chromiumcodereview.appspot.com/13270005/diff/140001/chrome/browser/net/dns_probe_runner.cc#newcode124 chrome/browser/net/dns_probe_runner.cc:124: if (!async) { On 2013/06/13 14:37:04, ttuttle wrote: > ...
7 years, 6 months ago (2013-06-13 15:00:11 UTC) #24
szym
https://chromiumcodereview.appspot.com/13270005/diff/140001/chrome/browser/net/dns_probe_runner.cc File chrome/browser/net/dns_probe_runner.cc (right): https://chromiumcodereview.appspot.com/13270005/diff/140001/chrome/browser/net/dns_probe_runner.cc#newcode124 chrome/browser/net/dns_probe_runner.cc:124: if (!async) { On 2013/06/13 15:00:12, mmenke wrote: > ...
7 years, 6 months ago (2013-06-13 15:10:18 UTC) #25
mmenke
https://chromiumcodereview.appspot.com/13270005/diff/140001/chrome/browser/net/dns_probe_runner.cc File chrome/browser/net/dns_probe_runner.cc (right): https://chromiumcodereview.appspot.com/13270005/diff/140001/chrome/browser/net/dns_probe_runner.cc#newcode124 chrome/browser/net/dns_probe_runner.cc:124: if (!async) { On 2013/06/13 15:10:18, szym wrote: > ...
7 years, 6 months ago (2013-06-13 15:42:11 UTC) #26
szym
https://chromiumcodereview.appspot.com/13270005/diff/140001/chrome/browser/net/dns_probe_runner.cc File chrome/browser/net/dns_probe_runner.cc (right): https://chromiumcodereview.appspot.com/13270005/diff/140001/chrome/browser/net/dns_probe_runner.cc#newcode124 chrome/browser/net/dns_probe_runner.cc:124: if (!async) { On 2013/06/13 15:42:12, mmenke wrote: > ...
7 years, 6 months ago (2013-06-13 15:44:44 UTC) #27
mmenke
Still need to go over the browser tests, and want to spend some more time ...
7 years, 6 months ago (2013-06-13 20:04:54 UTC) #28
szym
dns_probe_* except dns_probe_browsertest looks good. The only major thing I suggest is getting rid of ...
7 years, 6 months ago (2013-06-13 20:50:48 UTC) #29
Deprecated (see juliatuttle)
PTAL, mmenke (and anyone else who's interested) https://chromiumcodereview.appspot.com/13270005/diff/182001/chrome/browser/net/dns_probe_runner.cc File chrome/browser/net/dns_probe_runner.cc (right): https://chromiumcodereview.appspot.com/13270005/diff/182001/chrome/browser/net/dns_probe_runner.cc#newcode43 chrome/browser/net/dns_probe_runner.cc:43: case net::OK: ...
7 years, 6 months ago (2013-06-18 19:36:37 UTC) #30
mmenke
https://codereview.chromium.org/13270005/diff/198001/chrome/browser/net/dns_probe_browsertest.cc File chrome/browser/net/dns_probe_browsertest.cc (right): https://codereview.chromium.org/13270005/diff/198001/chrome/browser/net/dns_probe_browsertest.cc#newcode57 chrome/browser/net/dns_probe_browsertest.cc:57: class BrokenLinkDoctorProtocolHandlerDelegate { Do we really need a delegate ...
7 years, 6 months ago (2013-06-20 15:47:36 UTC) #31
Deprecated (see juliatuttle)
PTAL, mmenke. https://chromiumcodereview.appspot.com/13270005/diff/198001/chrome/browser/net/dns_probe_browsertest.cc File chrome/browser/net/dns_probe_browsertest.cc (right): https://chromiumcodereview.appspot.com/13270005/diff/198001/chrome/browser/net/dns_probe_browsertest.cc#newcode57 chrome/browser/net/dns_probe_browsertest.cc:57: class BrokenLinkDoctorProtocolHandlerDelegate { On 2013/06/20 15:47:36, mmenke ...
7 years, 6 months ago (2013-06-21 19:55:52 UTC) #32
mmenke
A couple more comments (Some actually written over the weekend, honest). I'll get back to ...
7 years, 6 months ago (2013-06-24 16:20:00 UTC) #33
Deprecated (see juliatuttle)
PTAL, mmenke. https://chromiumcodereview.appspot.com/13270005/diff/227002/chrome/browser/net/dns_probe_browsertest.cc File chrome/browser/net/dns_probe_browsertest.cc (right): https://chromiumcodereview.appspot.com/13270005/diff/227002/chrome/browser/net/dns_probe_browsertest.cc#newcode67 chrome/browser/net/dns_probe_browsertest.cc:67: virtual int link_doctor_net_error() const = 0; On ...
7 years, 6 months ago (2013-06-25 16:45:04 UTC) #34
mmenke
https://chromiumcodereview.appspot.com/13270005/diff/227002/chrome/browser/net/dns_probe_browsertest.cc File chrome/browser/net/dns_probe_browsertest.cc (right): https://chromiumcodereview.appspot.com/13270005/diff/227002/chrome/browser/net/dns_probe_browsertest.cc#newcode129 chrome/browser/net/dns_probe_browsertest.cc:129: DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); On 2013/06/25 16:45:04, ttuttle wrote: > On 2013/06/24 ...
7 years, 6 months ago (2013-06-25 17:40:26 UTC) #35
mmenke
First half of comments. All nits except two browser test concerns. https://codereview.chromium.org/13270005/diff/227002/chrome/browser/net/dns_probe_browsertest.cc File chrome/browser/net/dns_probe_browsertest.cc (right): ...
7 years, 6 months ago (2013-06-26 15:48:19 UTC) #36
mmenke
Not going to finish this today. In focusing on a couple files, I'd kinda forgotten ...
7 years, 6 months ago (2013-06-26 16:31:28 UTC) #37
Deprecated (see juliatuttle)
https://chromiumcodereview.appspot.com/13270005/diff/244002/chrome/browser/net/dns_probe_browsertest.cc File chrome/browser/net/dns_probe_browsertest.cc (right): https://chromiumcodereview.appspot.com/13270005/diff/244002/chrome/browser/net/dns_probe_browsertest.cc#newcode360 chrome/browser/net/dns_probe_browsertest.cc:360: switch (last_dns_probe_status()) { On 2013/06/25 17:40:27, mmenke wrote: > ...
7 years, 6 months ago (2013-06-26 22:23:55 UTC) #38
mmenke
https://chromiumcodereview.appspot.com/13270005/diff/244002/chrome/browser/net/dns_probe_service.cc File chrome/browser/net/dns_probe_service.cc (right): https://chromiumcodereview.appspot.com/13270005/diff/244002/chrome/browser/net/dns_probe_service.cc#newcode154 chrome/browser/net/dns_probe_service.cc:154: SetSystemClientToCurrentConfig(); On 2013/06/26 22:23:56, ttuttle wrote: > On 2013/06/25 ...
7 years, 5 months ago (2013-06-27 14:49:36 UTC) #39
Deprecated (see juliatuttle)
https://chromiumcodereview.appspot.com/13270005/diff/266001/chrome/browser/net/dns_probe_browsertest.cc File chrome/browser/net/dns_probe_browsertest.cc (right): https://chromiumcodereview.appspot.com/13270005/diff/266001/chrome/browser/net/dns_probe_browsertest.cc#newcode359 chrome/browser/net/dns_probe_browsertest.cc:359: WaitForNetErrorInfo(); On 2013/06/27 14:49:37, mmenke wrote: > On 2013/06/26 ...
7 years, 5 months ago (2013-06-28 16:59:45 UTC) #40
mmenke
Browser test (finally) done. Sending just this since I found a bug, still need to ...
7 years, 5 months ago (2013-06-28 18:06:19 UTC) #41
mmenke
A couple more nits. Keep on getting distracted, will not have time to finish up ...
7 years, 5 months ago (2013-06-28 20:43:27 UTC) #42
mmenke
Oh yea, and what about disabling it before landing? Seems like that'd be a bit ...
7 years, 5 months ago (2013-06-28 20:46:49 UTC) #43
Deprecated (see juliatuttle)
https://chromiumcodereview.appspot.com/13270005/diff/307001/chrome/browser/net/dns_probe_browsertest.cc File chrome/browser/net/dns_probe_browsertest.cc (right): https://chromiumcodereview.appspot.com/13270005/diff/307001/chrome/browser/net/dns_probe_browsertest.cc#newcode59 chrome/browser/net/dns_probe_browsertest.cc:59: class DelayingDnsProbeService : public DnsProbeService { On 2013/06/28 18:06:19, ...
7 years, 5 months ago (2013-07-01 17:39:55 UTC) #44
mmenke
https://chromiumcodereview.appspot.com/13270005/diff/307001/chrome/browser/net/dns_probe_browsertest.cc File chrome/browser/net/dns_probe_browsertest.cc (right): https://chromiumcodereview.appspot.com/13270005/diff/307001/chrome/browser/net/dns_probe_browsertest.cc#newcode344 chrome/browser/net/dns_probe_browsertest.cc:344: MessageLoop::current()->Run(); On 2013/07/01 17:39:55, ttuttle wrote: > On 2013/06/28 ...
7 years, 5 months ago (2013-07-01 18:11:44 UTC) #45
mmenke
Renderer comments. Other than these, I'm happy with it. I'll get the (hopefully final) set ...
7 years, 5 months ago (2013-07-12 16:14:48 UTC) #46
Deprecated (see juliatuttle)
PTAL, mmenke. https://chromiumcodereview.appspot.com/13270005/diff/320001/chrome/renderer/net/net_error_helper.cc File chrome/renderer/net/net_error_helper.cc (right): https://chromiumcodereview.appspot.com/13270005/diff/320001/chrome/renderer/net/net_error_helper.cc#newcode89 chrome/renderer/net/net_error_helper.cc:89: } On 2013/07/12 16:14:48, mmenke wrote: > ...
7 years, 5 months ago (2013-07-12 17:42:48 UTC) #47
mmenke
https://chromiumcodereview.appspot.com/13270005/diff/320001/chrome/renderer/net/net_error_helper.cc File chrome/renderer/net/net_error_helper.cc (right): https://chromiumcodereview.appspot.com/13270005/diff/320001/chrome/renderer/net/net_error_helper.cc#newcode89 chrome/renderer/net/net_error_helper.cc:89: } On 2013/07/12 17:42:49, ttuttle wrote: > On 2013/07/12 ...
7 years, 5 months ago (2013-07-12 18:02:11 UTC) #48
mmenke
Just the browser tests left. :) https://codereview.chromium.org/13270005/diff/351001/chrome/browser/net/dns_probe_service_unittest.cc File chrome/browser/net/dns_probe_service_unittest.cc (right): https://codereview.chromium.org/13270005/diff/351001/chrome/browser/net/dns_probe_service_unittest.cc#newcode59 chrome/browser/net/dns_probe_service_unittest.cc:59: EXPECT_FALSE(callback_called()); nit: I ...
7 years, 5 months ago (2013-07-12 19:51:21 UTC) #49
mmenke
https://codereview.chromium.org/13270005/diff/351001/chrome/browser/net/dns_probe_browsertest.cc File chrome/browser/net/dns_probe_browsertest.cc (right): https://codereview.chromium.org/13270005/diff/351001/chrome/browser/net/dns_probe_browsertest.cc#newcode84 chrome/browser/net/dns_probe_browsertest.cc:84: int delayed_probe_count() const { return delayed_probes_.size(); } Suggest verifying ...
7 years, 5 months ago (2013-07-12 20:08:59 UTC) #50
Deprecated (see juliatuttle)
PTAL, mmenke. https://chromiumcodereview.appspot.com/13270005/diff/320001/chrome/renderer/net/net_error_helper.cc File chrome/renderer/net/net_error_helper.cc (right): https://chromiumcodereview.appspot.com/13270005/diff/320001/chrome/renderer/net/net_error_helper.cc#newcode89 chrome/renderer/net/net_error_helper.cc:89: } On 2013/07/12 18:02:12, mmenke wrote: > ...
7 years, 5 months ago (2013-07-12 20:55:54 UTC) #51
mmenke
https://chromiumcodereview.appspot.com/13270005/diff/351001/chrome/browser/net/net_error_tab_helper.cc File chrome/browser/net/net_error_tab_helper.cc (right): https://chromiumcodereview.appspot.com/13270005/diff/351001/chrome/browser/net/net_error_tab_helper.cc#newcode118 chrome/browser/net/net_error_tab_helper.cc:118: dns_error_active_ = false; On 2013/07/12 20:55:55, ttuttle wrote: > ...
7 years, 5 months ago (2013-07-12 21:07:48 UTC) #52
mmenke
LGTM https://codereview.chromium.org/13270005/diff/320001/chrome/renderer/net/net_error_helper.cc File chrome/renderer/net/net_error_helper.cc (right): https://codereview.chromium.org/13270005/diff/320001/chrome/renderer/net/net_error_helper.cc#newcode89 chrome/renderer/net/net_error_helper.cc:89: } On 2013/07/12 20:55:55, ttuttle wrote: > On ...
7 years, 5 months ago (2013-07-15 16:33:21 UTC) #53
Deprecated (see juliatuttle)
https://chromiumcodereview.appspot.com/13270005/diff/357002/chrome/browser/net/net_error_tab_helper.cc File chrome/browser/net/net_error_tab_helper.cc (right): https://chromiumcodereview.appspot.com/13270005/diff/357002/chrome/browser/net/net_error_tab_helper.cc#newcode108 chrome/browser/net/net_error_tab_helper.cc:108: // but // ensures that the status will make ...
7 years, 5 months ago (2013-07-15 19:33:37 UTC) #54
James Hawkins
https://chromiumcodereview.appspot.com/13270005/diff/365002/chrome/common/localized_error.cc File chrome/common/localized_error.cc (right): https://chromiumcodereview.appspot.com/13270005/diff/365002/chrome/common/localized_error.cc#newcode449 chrome/common/localized_error.cc:449: DCHECK(map); The cases above don't DCHECK; why are we ...
7 years, 5 months ago (2013-07-15 19:52:45 UTC) #55
Deprecated (see juliatuttle)
PTAL, jhawkins. https://chromiumcodereview.appspot.com/13270005/diff/365002/chrome/common/localized_error.cc File chrome/common/localized_error.cc (right): https://chromiumcodereview.appspot.com/13270005/diff/365002/chrome/common/localized_error.cc#newcode449 chrome/common/localized_error.cc:449: DCHECK(map); On 2013/07/15 19:52:45, James Hawkins wrote: ...
7 years, 5 months ago (2013-07-15 20:22:27 UTC) #56
James Hawkins
LGTM with request. https://chromiumcodereview.appspot.com/13270005/diff/365002/chrome/renderer/net/net_error_helper.h File chrome/renderer/net/net_error_helper.h (right): https://chromiumcodereview.appspot.com/13270005/diff/365002/chrome/renderer/net/net_error_helper.h#newcode65 chrome/renderer/net/net_error_helper.h:65: virtual void UpdateErrorPage(); On 2013/07/15 20:22:28, ...
7 years, 5 months ago (2013-07-15 20:28:30 UTC) #57
palmer
messages.h LGTM
7 years, 5 months ago (2013-07-15 21:17:27 UTC) #58
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/ttuttle@chromium.org/13270005/372035
7 years, 5 months ago (2013-07-15 22:26:42 UTC) #59
commit-bot: I haz the power
Retried try job too often on linux_aura for step(s) unit_tests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=linux_aura&number=59662
7 years, 5 months ago (2013-07-16 02:21:09 UTC) #60
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/ttuttle@chromium.org/13270005/372035
7 years, 5 months ago (2013-07-16 02:36:28 UTC) #61
commit-bot: I haz the power
Retried try job too often on linux_aura for step(s) unit_tests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=linux_aura&number=59750
7 years, 5 months ago (2013-07-16 04:17:43 UTC) #62
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/ttuttle@chromium.org/13270005/372035
7 years, 5 months ago (2013-07-16 17:08:35 UTC) #63
commit-bot: I haz the power
Retried try job too often on linux_aura for step(s) unit_tests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=linux_aura&number=60386
7 years, 5 months ago (2013-07-16 18:26:34 UTC) #64
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/ttuttle@chromium.org/13270005/372035
7 years, 5 months ago (2013-07-16 20:19:28 UTC) #65
commit-bot: I haz the power
Retried try job too often on win7_aura for step(s) content_browsertests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=win7_aura&number=59914
7 years, 5 months ago (2013-07-17 00:06:18 UTC) #66
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/ttuttle@chromium.org/13270005/372035
7 years, 5 months ago (2013-07-17 00:26:17 UTC) #67
commit-bot: I haz the power
7 years, 5 months ago (2013-07-17 05:23:15 UTC) #68
Message was sent while issue was closed.
Change committed as 211950

Powered by Google App Engine
This is Rietveld 408576698