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

Issue 101573003: Add the navigation redirect-chain to Sync sessions proto for offline analysis. (Closed)

Created:
7 years ago by Donn Denman
Modified:
6 years, 8 months ago
CC:
chromium-reviews, tim+watch_chromium.org, jam, haitaol+watch_chromium.org, joi+watch-content_chromium.org, darin-cc_chromium.org, albertb+watch_chromium.org, miu+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Visibility:
Public.

Description

Add a navigation redirect-chain to Sync sessions proto for offline analysis. Google design doc at https://docs.google.com/a/google.com/document/d/1bh7aqvCMYzkobVA2MDuqWbQgymhdhdoqaOfvcLOaAYk BUG=310373 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=265515

Patch Set 1 #

Patch Set 2 : Moved redirect info into a separate protocol message. #

Patch Set 3 : Updating comments #

Patch Set 4 : rebase #

Patch Set 5 : removed not-a-redirect enumeration. #

Patch Set 6 : Changed redirect enums again to capture generic redirect and not-a-redirect. #

Patch Set 7 : Renamed message from Redirect to NavigationRedirect since it doesn't just contain the redirecting U… #

Patch Set 8 : Now putting the raw transition type into the new redirect message, and reverting the change to Redi… #

Patch Set 9 : Changed raw transition_type from int32 to uint32. #

Patch Set 10 : Updated proto comments. #

Patch Set 11 : Changed NavigationRedirect message to only have a URL and a boolean. #

Patch Set 12 : rebased #

Patch Set 13 : Add unit tests. #

Patch Set 14 : rebase #

Patch Set 15 : Logging and comments cleanup. #

Patch Set 16 : Rebased to origin/master (had fallen way behind), and changed NavigationRedirect message to only co… #

Patch Set 17 : Rebased to origin/master (had fallen way behind), and changed NavigationRedirect message to only co… #

Patch Set 18 : Added pickle support for redirects, and updated unit tests. #

Patch Set 19 : Minor cleanup of comments and fixed bugs found by inspection of pickle code. #

Patch Set 20 : rebase #

Patch Set 21 : Use short ints for pickle count, and remove some extra logging. #

Patch Set 22 : rebase #

Patch Set 23 : Fix android unit test (state_serializer_unittests.cc). #

Total comments: 7

Patch Set 24 : Moved a comment, as suggested in haitao's review. #

Patch Set 25 : Removed pickling of redirects #

Patch Set 26 : rebase #

Patch Set 27 : rebase again #

Patch Set 28 : Rebase properly #

Patch Set 29 : Clean up a test. #

Patch Set 30 : Fix a test. #

Patch Set 31 : Fix a test. #

Patch Set 32 : Rebase, and merge with isRestored change. #

Patch Set 33 : Comments. #

Total comments: 21

Patch Set 34 : Address Scott's comments. #

Total comments: 10

Patch Set 35 : Address Scott's follow-on comments. #

Total comments: 1

Patch Set 36 : Trivial change. #

Total comments: 8

Patch Set 37 : Addressed Brett's comments on Patch Set 36. #

Patch Set 38 : Simplified the Navigation Controller to no longer splice a client-redirect onto its base navigation. #

Total comments: 1

Patch Set 39 : routine rebase #

Patch Set 40 : rebase #

Patch Set 41 : MakeNavigateParams now conditionally uses redirects from the navigation entry. #

Patch Set 42 : routine rebase #

Total comments: 4

Patch Set 43 : Updated a comment. #

Total comments: 11

Patch Set 44 : Address comments from creis on patch set 43. #

Total comments: 7

Patch Set 45 : Address comments from creis on patch set 44. #

Total comments: 4

Patch Set 46 : Addressed creis' comments on patch set 45. #

Total comments: 2

Patch Set 47 : Address Brett's comment on patch set 46, and rebase. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+195 lines, -28 lines) Patch
M components/sessions/serialized_navigation_entry.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 2 chunks +2 lines, -0 lines 0 comments Download
M components/sessions/serialized_navigation_entry.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 3 chunks +18 lines, -0 lines 0 comments Download
M components/sessions/serialized_navigation_entry_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 9 chunks +55 lines, -0 lines 0 comments Download
M content/browser/frame_host/navigation_controller_impl.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 38 39 40 41 42 43 44 45 46 2 chunks +2 lines, -1 line 0 comments Download
M content/browser/frame_host/navigation_controller_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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 2 chunks +26 lines, -3 lines 0 comments Download
M content/browser/frame_host/navigation_entry_impl.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 40 41 42 43 3 chunks +4 lines, -11 lines 0 comments Download
M content/browser/frame_host/navigation_entry_impl.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 2 chunks +10 lines, -1 line 0 comments Download
M content/browser/frame_host/navigator_impl.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 38 39 40 41 42 43 44 45 46 2 chunks +8 lines, -2 lines 0 comments Download
M content/public/browser/navigation_entry.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 +5 lines, -0 lines 0 comments Download
M content/public/common/page_transition_types.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 40 41 42 43 44 45 1 chunk +4 lines, -0 lines 0 comments Download
M content/public/common/page_transition_types.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 38 39 40 41 42 43 44 45 1 chunk +5 lines, -0 lines 0 comments Download
M content/test/test_render_frame_host.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 40 41 42 43 44 2 chunks +8 lines, -1 line 0 comments Download
M content/test/test_render_frame_host.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 38 39 40 41 42 43 44 45 46 3 chunks +17 lines, -8 lines 0 comments Download
M content/test/test_render_view_host.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 38 39 40 41 42 43 44 45 46 1 chunk +1 line, -1 line 0 comments Download
M sync/protocol/proto_value_conversions.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 40 41 42 43 44 45 46 2 chunks +4 lines, -0 lines 0 comments Download
M sync/protocol/proto_value_conversions.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 38 39 40 41 42 43 44 45 46 1 chunk +9 lines, -0 lines 0 comments Download
M sync/protocol/proto_value_conversions_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 38 39 40 41 42 43 44 45 46 1 chunk +4 lines, -0 lines 0 comments Download
M sync/protocol/session_specifics.proto 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 +13 lines, -0 lines 0 comments Download

Messages

Total messages: 72 (0 generated)
Donn Denman
Reviewers, please take a look at the section that you're an owner of. Charlie, please ...
6 years, 11 months ago (2014-01-15 22:35:25 UTC) #1
Charlie Reis
On 2014/01/15 22:35:25, Donn Denman wrote: > Charlie, please look at navigation_controller_impl if you don't ...
6 years, 11 months ago (2014-01-17 23:21:31 UTC) #2
haitaol1
https://codereview.chromium.org/101573003/diff/590001/components/sessions/serialized_navigation_entry.cc File components/sessions/serialized_navigation_entry.cc (right): https://codereview.chromium.org/101573003/diff/590001/components/sessions/serialized_navigation_entry.cc#newcode151 components/sessions/serialized_navigation_entry.cc:151: // The redirect chain does not need to be ...
6 years, 11 months ago (2014-01-17 23:52:22 UTC) #3
Donn Denman
https://codereview.chromium.org/101573003/diff/590001/components/sessions/serialized_navigation_entry.cc File components/sessions/serialized_navigation_entry.cc (right): https://codereview.chromium.org/101573003/diff/590001/components/sessions/serialized_navigation_entry.cc#newcode151 components/sessions/serialized_navigation_entry.cc:151: // The redirect chain does not need to be ...
6 years, 11 months ago (2014-01-18 01:30:19 UTC) #4
haitaol1
sync LGTM. sorry for the delay https://codereview.chromium.org/101573003/diff/590001/content/browser/frame_host/navigation_controller_impl.cc File content/browser/frame_host/navigation_controller_impl.cc (right): https://codereview.chromium.org/101573003/diff/590001/content/browser/frame_host/navigation_controller_impl.cc#newcode819 content/browser/frame_host/navigation_controller_impl.cc:819: GetMergedRedirectChain(params, active_entry->GetRedirectChain())); I ...
6 years, 11 months ago (2014-01-23 23:19:43 UTC) #5
sky
Have you done any analysis of the effects of this on session and tab state? ...
6 years, 11 months ago (2014-01-24 00:41:28 UTC) #6
donnd
No, we have not done any analysis of the impact on storage or performance. Haitao, ...
6 years, 11 months ago (2014-01-24 01:34:39 UTC) #7
sky
Before this lands some analysis needs to be done on potential impact. I recommend tracking ...
6 years, 11 months ago (2014-01-24 16:32:22 UTC) #8
Donn Denman
Haitao and Scott, I removed the pickling, so hopefully that addresses the size issue. Please ...
6 years, 10 months ago (2014-02-05 22:53:27 UTC) #9
sky
Can the sync side query the history db for the redirect chain when it needs ...
6 years, 10 months ago (2014-02-06 17:49:15 UTC) #10
sky
I'm basically wondering if there is a way to avoid storing the redirect chain for ...
6 years, 10 months ago (2014-02-06 17:49:35 UTC) #11
Donn Denman
On 2014/02/06 17:49:15, sky wrote: > Can the sync side query the history db for ...
6 years, 10 months ago (2014-02-06 19:41:42 UTC) #12
sky
Then I am confused. Can't the history db build the redirect chain itself. We do ...
6 years, 10 months ago (2014-02-06 22:32:08 UTC) #13
donnd
I don't think the history db has the intermediate redirects. Maybe there are some simple ...
6 years, 10 months ago (2014-02-07 01:56:30 UTC) #14
sky
All the redirects should be added. The code that does this is here: https://cs.corp.google.com/#aosp-ics/external/chromium/chrome/browser/history/history_backend.cc&q=historybackend::addpage&l=367 . ...
6 years, 10 months ago (2014-02-07 16:43:02 UTC) #15
donnd
Haitao, do you know anything about this? On Fri, Feb 7, 2014 at 8:42 AM, ...
6 years, 10 months ago (2014-02-07 17:37:19 UTC) #16
haitaol1
On 2014/02/07 17:37:19, donnd wrote: > Haitao, do you know anything about this? > > ...
6 years, 10 months ago (2014-02-07 19:10:08 UTC) #17
donnd
Haitao, thanks for clarifying, I didn't know about this. Scott, sorry about my confusion regarding ...
6 years, 10 months ago (2014-02-07 19:33:25 UTC) #18
sky
So, where does that leave the changes you've been doing? -Scott On Fri, Feb 7, ...
6 years, 10 months ago (2014-02-07 21:25:41 UTC) #19
donnd
Scott, Frankly when you mentioned the "history db" I thought you were talking about the ...
6 years, 10 months ago (2014-02-09 00:48:08 UTC) #20
Donn Denman
Brett, Scott and Haitao, Please take another look at this change to add Redirects to ...
6 years, 10 months ago (2014-02-20 21:10:13 UTC) #21
sky
https://codereview.chromium.org/101573003/diff/1200001/components/sessions/serialized_navigation_entry.cc File components/sessions/serialized_navigation_entry.cc (right): https://codereview.chromium.org/101573003/diff/1200001/components/sessions/serialized_navigation_entry.cc#newcode482 components/sessions/serialized_navigation_entry.cc:482: // Copy all redirect chain entries except the last ...
6 years, 10 months ago (2014-02-20 22:12:25 UTC) #22
Donn Denman
Scott, I think I have addressed all of your comments except the one about not ...
6 years, 10 months ago (2014-02-21 08:18:55 UTC) #23
sky
https://codereview.chromium.org/101573003/diff/1200001/content/browser/frame_host/navigation_controller_impl.cc File content/browser/frame_host/navigation_controller_impl.cc (right): https://codereview.chromium.org/101573003/diff/1200001/content/browser/frame_host/navigation_controller_impl.cc#newcode829 content/browser/frame_host/navigation_controller_impl.cc:829: active_entry->SetRedirectChain( On 2014/02/21 08:18:56, Donn Denman wrote: > On ...
6 years, 10 months ago (2014-02-21 17:01:12 UTC) #24
Donn Denman
Scott, thanks for the catch! PTAL. https://codereview.chromium.org/101573003/diff/1320001/components/sessions/serialized_navigation_entry.cc File components/sessions/serialized_navigation_entry.cc (right): https://codereview.chromium.org/101573003/diff/1320001/components/sessions/serialized_navigation_entry.cc#newcode484 components/sessions/serialized_navigation_entry.cc:484: for (size_t i ...
6 years, 10 months ago (2014-02-25 19:23:13 UTC) #25
sky
https://codereview.chromium.org/101573003/diff/1410001/content/browser/frame_host/navigation_controller_impl.cc File content/browser/frame_host/navigation_controller_impl.cc (right): https://codereview.chromium.org/101573003/diff/1410001/content/browser/frame_host/navigation_controller_impl.cc#newcode858 content/browser/frame_host/navigation_controller_impl.cc:858: std::vector<GURL> NavigationControllerImpl::GetMergedRedirectChain( Seems like this should be only called ...
6 years, 10 months ago (2014-02-25 22:42:14 UTC) #26
haitaol1
https://codereview.chromium.org/101573003/diff/1410001/content/browser/frame_host/navigation_entry_impl.cc File content/browser/frame_host/navigation_entry_impl.cc (right): https://codereview.chromium.org/101573003/diff/1410001/content/browser/frame_host/navigation_entry_impl.cc#newcode294 content/browser/frame_host/navigation_entry_impl.cc:294: redirect_chain_ = redirect_chain; Donn: I found that even an ...
6 years, 9 months ago (2014-02-27 22:30:21 UTC) #27
Donn Denman
Brett, I think we're ready for you to do a quick first-pass on this CL ...
6 years, 9 months ago (2014-03-03 19:42:11 UTC) #28
brettw
https://codereview.chromium.org/101573003/diff/1410001/components/sessions/serialized_navigation_entry.h File components/sessions/serialized_navigation_entry.h (right): https://codereview.chromium.org/101573003/diff/1410001/components/sessions/serialized_navigation_entry.h#newcode160 components/sessions/serialized_navigation_entry.h:160: std::vector<GURL> redirect_chain_; // Only filled for local sessions. I ...
6 years, 9 months ago (2014-03-11 22:40:00 UTC) #29
Donn Denman
Brett, thanks for the review! PTAL https://codereview.chromium.org/101573003/diff/1410001/components/sessions/serialized_navigation_entry.h File components/sessions/serialized_navigation_entry.h (right): https://codereview.chromium.org/101573003/diff/1410001/components/sessions/serialized_navigation_entry.h#newcode160 components/sessions/serialized_navigation_entry.h:160: std::vector<GURL> redirect_chain_; // ...
6 years, 9 months ago (2014-03-12 20:13:35 UTC) #30
Donn Denman
Brett, PTAL at this simplified version. Now we're just applying the redirect chain from the ...
6 years, 9 months ago (2014-03-14 22:30:03 UTC) #31
brettw
lgtm
6 years, 9 months ago (2014-03-25 17:59:30 UTC) #32
Donn Denman
Scott, PTAL at this simplified version. The simplification should remove your outstanding concern, but you ...
6 years, 9 months ago (2014-03-25 18:21:18 UTC) #33
sky
I'm good, LGTM
6 years, 9 months ago (2014-03-25 19:36:07 UTC) #34
Donn Denman
The CQ bit was checked by donnd@chromium.org
6 years, 9 months ago (2014-03-25 21:13:47 UTC) #35
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/donnd@chromium.org/101573003/1460001
6 years, 9 months ago (2014-03-25 21:15:15 UTC) #36
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 9 months ago (2014-03-25 21:33:09 UTC) #37
commit-bot: I haz the power
Try jobs failed on following builders: tryserver.chromium on mac_chromium_compile_dbg
6 years, 9 months ago (2014-03-25 21:33:10 UTC) #38
Donn Denman
The CQ bit was checked by donnd@chromium.org
6 years, 9 months ago (2014-03-25 22:04:55 UTC) #39
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/donnd@chromium.org/101573003/1670001
6 years, 9 months ago (2014-03-25 22:06:10 UTC) #40
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 9 months ago (2014-03-25 22:58:38 UTC) #41
commit-bot: I haz the power
Retried try job too often on win_rel for step(s) app_list_unittests, ash_unittests, aura_unittests, cacheinvalidation_unittests, cc_unittests, check_deps, ...
6 years, 9 months ago (2014-03-25 22:58:39 UTC) #42
Donn Denman
The CQ bit was checked by donnd@chromium.org
6 years, 9 months ago (2014-03-25 23:04:24 UTC) #43
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/donnd@chromium.org/101573003/1670001
6 years, 9 months ago (2014-03-25 23:04:50 UTC) #44
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 9 months ago (2014-03-25 23:54:21 UTC) #45
commit-bot: I haz the power
Try jobs failed on following builders: tryserver.chromium on linux_chromium_chromeos_rel
6 years, 9 months ago (2014-03-25 23:54:21 UTC) #46
donnd
Brett, Looks like a change to navigator_impl.cc fixed the problem. Please take a look at ...
6 years, 9 months ago (2014-03-27 20:58:48 UTC) #47
brettw
https://chromiumcodereview.appspot.com/101573003/diff/1850001/content/browser/frame_host/navigator_impl.cc File content/browser/frame_host/navigator_impl.cc (right): https://chromiumcodereview.appspot.com/101573003/diff/1850001/content/browser/frame_host/navigator_impl.cc#newcode108 content/browser/frame_host/navigator_impl.cc:108: // We no longer clear redirects in the navigation ...
6 years, 9 months ago (2014-03-27 22:16:21 UTC) #48
donnd
Brett, PTAL. Thanks! https://chromiumcodereview.appspot.com/101573003/diff/1850001/content/browser/frame_host/navigator_impl.cc File content/browser/frame_host/navigator_impl.cc (right): https://chromiumcodereview.appspot.com/101573003/diff/1850001/content/browser/frame_host/navigator_impl.cc#newcode108 content/browser/frame_host/navigator_impl.cc:108: // We no longer clear redirects ...
6 years, 9 months ago (2014-03-28 03:11:38 UTC) #49
brettw
Sorry if I'm not 100% clear on this. Can you walk me through how the ...
6 years, 8 months ago (2014-03-28 21:15:33 UTC) #50
donnd
The problem with forward/back (and also with reload) is that the redirect chain never gets ...
6 years, 8 months ago (2014-03-28 23:53:03 UTC) #51
Donn Denman
Charlie, It would be great to get your review of this change, so PTAL. It ...
6 years, 8 months ago (2014-03-31 16:32:02 UTC) #52
Charlie Reis
Besides exposing the redirect chain publicly, it seems like the biggest change here is making ...
6 years, 8 months ago (2014-03-31 22:06:07 UTC) #53
donnd
Thanks for the review Charlie! https://chromiumcodereview.appspot.com/101573003/diff/1870001/content/browser/frame_host/navigation_controller_impl_unittest.cc File content/browser/frame_host/navigation_controller_impl_unittest.cc (right): https://chromiumcodereview.appspot.com/101573003/diff/1870001/content/browser/frame_host/navigation_controller_impl_unittest.cc#newcode1337 content/browser/frame_host/navigation_controller_impl_unittest.cc:1337: EXPECT_EQ(0U, committed_entry->GetRedirectChain().size()); On 2014/03/31 ...
6 years, 8 months ago (2014-04-01 04:36:24 UTC) #54
brettw
not lgtm until we can figure out the redirect thing. Maybe Charlie has a different ...
6 years, 8 months ago (2014-04-01 06:28:51 UTC) #55
donnd
Brett, Hopefully this is a better explanation of what this change does. Let me know ...
6 years, 8 months ago (2014-04-01 18:31:09 UTC) #56
brettw
Then that gets me back to my previous question, who appends the extra redirect? When ...
6 years, 8 months ago (2014-04-01 20:28:21 UTC) #57
donnd
On 2014/04/01 20:28:21, brettw wrote: > Then that gets me back to my previous question, ...
6 years, 8 months ago (2014-04-01 20:51:47 UTC) #58
brettw
Okay, I talked to John and I think its OK for the redirect chain to ...
6 years, 8 months ago (2014-04-01 21:12:25 UTC) #59
donnd
On 2014/04/01 21:12:25, brettw wrote: > Okay, I talked to John and I think its ...
6 years, 8 months ago (2014-04-01 21:33:41 UTC) #60
brettw
Where does the redirect chain get appended to? This is what I was asking before. ...
6 years, 8 months ago (2014-04-02 22:43:25 UTC) #61
donnd
On 2014/04/02 22:43:25, brettw wrote: > Where does the redirect chain get appended to? This ...
6 years, 8 months ago (2014-04-03 01:43:52 UTC) #62
Charlie Reis
I'm having trouble keeping up with the discussion about redirects being cleared, so I'll mostly ...
6 years, 8 months ago (2014-04-05 00:09:09 UTC) #63
donnd
Charlie, PTAL, and thanks for the review. https://chromiumcodereview.appspot.com/101573003/diff/1870001/content/browser/frame_host/navigation_controller_impl_unittest.cc File content/browser/frame_host/navigation_controller_impl_unittest.cc (right): https://chromiumcodereview.appspot.com/101573003/diff/1870001/content/browser/frame_host/navigation_controller_impl_unittest.cc#newcode1337 content/browser/frame_host/navigation_controller_impl_unittest.cc:1337: EXPECT_EQ(0U, committed_entry->GetRedirectChain().size()); ...
6 years, 8 months ago (2014-04-08 21:38:25 UTC) #64
Donn Denman
Charlie, for some reason my comments didn't get included in my last message -- sorry ...
6 years, 8 months ago (2014-04-09 21:09:20 UTC) #65
Charlie Reis
Ok, I think that takes care of my feedback, apart from a few small comments ...
6 years, 8 months ago (2014-04-09 22:15:11 UTC) #66
Donn Denman
On 2014/04/09 22:15:11, Charlie Reis wrote: > Ok, I think that takes care of my ...
6 years, 8 months ago (2014-04-10 06:46:17 UTC) #67
brettw
LGTM. Thanks for the thorough explanation. The thing I wasn't realizing is that the browser ...
6 years, 8 months ago (2014-04-10 19:51:01 UTC) #68
Donn Denman
Thanks Brett! https://codereview.chromium.org/101573003/diff/1930001/content/browser/frame_host/navigator_impl.cc File content/browser/frame_host/navigator_impl.cc (right): https://codereview.chromium.org/101573003/diff/1930001/content/browser/frame_host/navigator_impl.cc#newcode113 content/browser/frame_host/navigator_impl.cc:113: params->redirects = std::vector<GURL>(); On 2014/04/10 19:51:02, brettw ...
6 years, 8 months ago (2014-04-10 23:45:22 UTC) #69
Donn Denman
The CQ bit was checked by donnd@chromium.org
6 years, 8 months ago (2014-04-22 20:28:18 UTC) #70
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/donnd@chromium.org/101573003/1950001
6 years, 8 months ago (2014-04-22 20:29:10 UTC) #71
commit-bot: I haz the power
6 years, 8 months ago (2014-04-23 03:37:23 UTC) #72
Message was sent while issue was closed.
Change committed as 265515

Powered by Google App Engine
This is Rietveld 408576698