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

Issue 2086223002: Convert instant search messages to Mojo (Closed)

Created:
4 years, 6 months ago by tibell
Modified:
3 years, 10 months ago
CC:
Aaron Boodman, abarth-chromium, alexmos, ben+mojo_chromium.org, chromium-reviews, Charlie Reis, darin (slow to review), David Black, dhollowa+watch_chromium.org, donnd+watch_chromium.org, dougw+watch_chromium.org, Jered, jfweitz+watch_chromium.org, kmadhusu+watch_chromium.org, melevin+watch_chromium.org, qsr+mojo_chromium.org, samarth+watch_chromium.org, skanuj+watch_chromium.org, viettrungluu+watch_chromium.org, yzshen+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Convert instant search messages to Mojo Instead of mirroring browser state into a RenderViewObserver we use a RenderFrameObserver on the main frame. This is because Mojo, by design, doesn't communicate with RenderViews. Also, the data is eventually used from the main frame. CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_site_isolation BUG=653373 Review-Url: https://codereview.chromium.org/2086223002 Cr-Commit-Position: refs/heads/master@{#443838} Committed: https://chromium.googlesource.com/chromium/src/+/e3df8cd8ac45539711b1f0b6a00420f87d09d279

Patch Set 1 #

Patch Set 2 : Fix gyp build #

Patch Set 3 : Always send through the main frame #

Total comments: 14

Patch Set 4 : Address sammc's review comments #

Total comments: 1

Patch Set 5 : Ignore messages instead of connections #

Total comments: 9

Patch Set 6 : Address more sammc review comments #

Patch Set 7 : Only accept connections from Instant processes #

Patch Set 8 : Rebase #

Total comments: 4

Patch Set 9 : Rebase #

Patch Set 10 : Fix compilation after rebase #

Patch Set 11 : Rebase #

Patch Set 12 : Rewrite using WebContentsObserver Mojo support #

Patch Set 13 : Fix visibility rules on Android etc #

Patch Set 14 : Add missing interface impl registration #

Patch Set 15 : Add missing build dep #

Total comments: 2

Patch Set 16 : Ignore too-early messages #

Total comments: 34

Patch Set 17 : Address review comments #

Patch Set 18 : Merge #

Total comments: 12

Patch Set 19 : Address more review comments (required merge) #

Patch Set 20 : Merge #

Total comments: 21

Patch Set 21 : Address treib's review comments #

Total comments: 4

Patch Set 22 : Convert SearchBox to a RenderFrameObserver to support site isolation #

Total comments: 1

Patch Set 23 : Merge #

Patch Set 24 : Merge #

Patch Set 25 : Merge #

Patch Set 26 : Fix missed GetIsolatedProxy rename #

Patch Set 27 : Remove left-over debug logging #

Patch Set 28 : Only create SearchBox for main frame #

Patch Set 29 : We must have a SearchBox for all frames #

Patch Set 30 : Again only have a SearchBox from the main frame, but make sure it's accessed from the extension #

Total comments: 7

Patch Set 31 : Address rockot's review comments #

Patch Set 32 : Merge #

Unified diffs Side-by-side diffs Delta from patch set Stats (+921 lines, -843 lines) Patch
M chrome/browser/ui/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 29 30 31 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/ui/search/instant_search_prerenderer_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 17 chunks +58 lines, -45 lines 0 comments Download
M chrome/browser/ui/search/instant_tab_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 7 chunks +20 lines, -18 lines 0 comments Download
M chrome/browser/ui/search/search_ipc_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 23 24 25 26 27 7 chunks +54 lines, -24 lines 0 comments Download
M chrome/browser/ui/search/search_ipc_router.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 19 chunks +114 lines, -72 lines 0 comments Download
M chrome/browser/ui/search/search_ipc_router_policy_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/ui/search/search_ipc_router_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 38 chunks +79 lines, -154 lines 0 comments Download
M chrome/browser/ui/search/search_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 2 chunks +2 lines, -3 lines 0 comments Download
M chrome/browser/ui/search/search_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 13 chunks +42 lines, -78 lines 0 comments Download
M chrome/common/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 29 30 31 3 chunks +19 lines, -2 lines 0 comments Download
A chrome/common/instant.mojom 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 +104 lines, -0 lines 0 comments Download
A chrome/common/instant.typemap 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 +26 lines, -0 lines 0 comments Download
A chrome/common/instant_type_traits.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 1 chunk +57 lines, -0 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 6 chunks +1 line, -140 lines 0 comments Download
A chrome/common/search/mock_searchbox.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 1 chunk +31 lines, -0 lines 0 comments Download
A chrome/common/search/mock_searchbox.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 +8 lines, -0 lines 0 comments Download
M chrome/renderer/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 29 30 31 3 chunks +3 lines, -0 lines 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 3 chunks +7 lines, -7 lines 0 comments Download
M chrome/renderer/searchbox/searchbox.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 7 chunks +37 lines, -35 lines 0 comments Download
M chrome/renderer/searchbox/searchbox.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 7 chunks +92 lines, -148 lines 0 comments Download
M chrome/renderer/searchbox/searchbox_extension.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 13 chunks +124 lines, -107 lines 0 comments Download
M chrome/test/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 29 30 31 1 chunk +1 line, -0 lines 0 comments Download
A chrome/typemaps.gni 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 +5 lines, -0 lines 0 comments Download
M content/browser/frame_host/render_frame_host_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 1 chunk +1 line, -1 line 0 comments Download
M content/public/test/mock_render_process_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 1 chunk +1 line, -1 line 0 comments Download
M content/renderer/screen_orientation/screen_orientation_dispatcher_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 1 chunk +1 line, -1 line 0 comments Download
M mojo/public/cpp/bindings/associated_interface_ptr.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 2 chunks +31 lines, -6 lines 0 comments Download
M mojo/public/tools/bindings/chromium_bindings_configuration.gni 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 +1 line, -0 lines 0 comments Download

Messages

Total messages: 183 (110 generated)
tibell
4 years, 6 months ago (2016-06-23 01:21:43 UTC) #2
tibell
This is now ready for review.
4 years, 6 months ago (2016-06-24 00:32:11 UTC) #4
Sam McNally
https://codereview.chromium.org/2086223002/diff/40001/chrome/browser/ui/BUILD.gn File chrome/browser/ui/BUILD.gn (right): https://codereview.chromium.org/2086223002/diff/40001/chrome/browser/ui/BUILD.gn#newcode178 chrome/browser/ui/BUILD.gn:178: "//content/public/common", I don't think this is necessary anymore. https://codereview.chromium.org/2086223002/diff/40001/chrome/browser/ui/search/search_ipc_router.cc ...
4 years, 6 months ago (2016-06-24 02:51:16 UTC) #5
tibell
PTAL https://codereview.chromium.org/2086223002/diff/40001/chrome/browser/ui/BUILD.gn File chrome/browser/ui/BUILD.gn (right): https://codereview.chromium.org/2086223002/diff/40001/chrome/browser/ui/BUILD.gn#newcode178 chrome/browser/ui/BUILD.gn:178: "//content/public/common", On 2016/06/24 02:51:15, Sam McNally wrote: > ...
4 years, 6 months ago (2016-06-24 03:55:51 UTC) #6
tibell
This is another Chrome IPC to Mojo conversion. As a reminder, we're doing a few ...
4 years, 6 months ago (2016-06-24 03:57:43 UTC) #8
tibell
https://codereview.chromium.org/2086223002/diff/60001/chrome/browser/ui/search/search_ipc_router_unittest.cc File chrome/browser/ui/search/search_ipc_router_unittest.cc (left): https://codereview.chromium.org/2086223002/diff/60001/chrome/browser/ui/search/search_ipc_router_unittest.cc#oldcode207 chrome/browser/ui/search/search_ipc_router_unittest.cc:207: TEST_F(SearchIPCRouterTest, IgnoreMessagesFromNonInstantRenderers) { This test (and the one further ...
4 years, 6 months ago (2016-06-24 04:16:56 UTC) #9
tibell
PTAL I had to revert the change to ignore incomming connections instead of incoming messages ...
4 years, 5 months ago (2016-06-27 00:45:56 UTC) #10
tibell
On 2016/06/27 00:45:56, tibell wrote: > PTAL > > I had to revert the change ...
4 years, 5 months ago (2016-06-29 03:43:50 UTC) #11
Sam McNally
https://codereview.chromium.org/2086223002/diff/80001/chrome/browser/ui/search/search_ipc_router.cc File chrome/browser/ui/search/search_ipc_router.cc (right): https://codereview.chromium.org/2086223002/diff/80001/chrome/browser/ui/search/search_ipc_router.cc#newcode167 chrome/browser/ui/search/search_ipc_router.cc:167: bool SearchIPCRouter::ShouldHandleMessage() const { I think this needs to ...
4 years, 5 months ago (2016-06-29 05:55:37 UTC) #12
tibell
https://codereview.chromium.org/2086223002/diff/80001/chrome/browser/ui/search/search_ipc_router.cc File chrome/browser/ui/search/search_ipc_router.cc (right): https://codereview.chromium.org/2086223002/diff/80001/chrome/browser/ui/search/search_ipc_router.cc#newcode167 chrome/browser/ui/search/search_ipc_router.cc:167: bool SearchIPCRouter::ShouldHandleMessage() const { On 2016/06/29 05:55:37, Sam McNally ...
4 years, 5 months ago (2016-07-07 03:49:23 UTC) #13
tibell
PTAL https://codereview.chromium.org/2086223002/diff/80001/chrome/browser/ui/search/search_ipc_router.cc File chrome/browser/ui/search/search_ipc_router.cc (right): https://codereview.chromium.org/2086223002/diff/80001/chrome/browser/ui/search/search_ipc_router.cc#newcode167 chrome/browser/ui/search/search_ipc_router.cc:167: bool SearchIPCRouter::ShouldHandleMessage() const { On 2016/07/07 03:49:23, tibell ...
4 years, 5 months ago (2016-07-07 05:36:02 UTC) #14
dcheng
https://codereview.chromium.org/2086223002/diff/140001/chrome/browser/ui/search/search_ipc_router.cc File chrome/browser/ui/search/search_ipc_router.cc (right): https://codereview.chromium.org/2086223002/diff/140001/chrome/browser/ui/search/search_ipc_router.cc#newcode211 chrome/browser/ui/search/search_ipc_router.cc:211: const base::TimeDelta& time) { I haven't looked through the ...
4 years, 5 months ago (2016-07-08 06:53:15 UTC) #15
dcheng
https://codereview.chromium.org/2086223002/diff/140001/chrome/browser/ui/search/search_ipc_router.cc File chrome/browser/ui/search/search_ipc_router.cc (right): https://codereview.chromium.org/2086223002/diff/140001/chrome/browser/ui/search/search_ipc_router.cc#newcode211 chrome/browser/ui/search/search_ipc_router.cc:211: const base::TimeDelta& time) { On 2016/07/08 06:53:15, dcheng wrote: ...
4 years, 5 months ago (2016-07-08 07:22:27 UTC) #16
tibell
https://codereview.chromium.org/2086223002/diff/140001/chrome/browser/ui/search/search_ipc_router.cc File chrome/browser/ui/search/search_ipc_router.cc (right): https://codereview.chromium.org/2086223002/diff/140001/chrome/browser/ui/search/search_ipc_router.cc#newcode211 chrome/browser/ui/search/search_ipc_router.cc:211: const base::TimeDelta& time) { On 2016/07/08 07:22:27, dcheng wrote: ...
4 years, 5 months ago (2016-07-11 00:53:03 UTC) #17
dcheng
I like this way of scoping instant messages to instant processes: it definitely seems simpler. ...
4 years, 5 months ago (2016-07-11 12:29:30 UTC) #19
tibell
Rebase
4 years, 3 months ago (2016-09-23 05:04:06 UTC) #28
tibell
Rewrite using WebContentsObserver Mojo support
4 years, 2 months ago (2016-09-30 04:41:47 UTC) #33
tibell
This is now ready for review. I've substantially improved the CL by using new support ...
4 years, 2 months ago (2016-09-30 04:47:23 UTC) #39
tibell
Fix visibility rules on Android etc
4 years, 2 months ago (2016-09-30 04:53:23 UTC) #40
tibell
Add missing interface impl registration
4 years, 2 months ago (2016-09-30 05:15:28 UTC) #45
tibell
Add missing build dep
4 years, 2 months ago (2016-09-30 05:44:02 UTC) #50
Ken Rockot(use gerrit already)
Awesome, associated interface usage and mojo/public LGTM https://codereview.chromium.org/2086223002/diff/280001/mojo/public/cpp/bindings/associated_interface_ptr.h File mojo/public/cpp/bindings/associated_interface_ptr.h (right): https://codereview.chromium.org/2086223002/diff/280001/mojo/public/cpp/bindings/associated_interface_ptr.h#newcode243 mojo/public/cpp/bindings/associated_interface_ptr.h:243: // through ...
4 years, 2 months ago (2016-10-03 18:08:42 UTC) #55
tibell
Ignore too-early messages
4 years, 2 months ago (2016-10-04 06:06:48 UTC) #56
dcheng
https://codereview.chromium.org/2086223002/diff/300001/chrome/browser/ui/search/search_ipc_router.cc File chrome/browser/ui/search/search_ipc_router.cc (right): https://codereview.chromium.org/2086223002/diff/300001/chrome/browser/ui/search/search_ipc_router.cc#newcode33 chrome/browser/ui/search/search_ipc_router.cc:33: mojo::GetProxyForTesting(&search_box_); Sorry, I don't quite get this comment; can ...
4 years, 2 months ago (2016-10-05 00:44:19 UTC) #63
Sam McNally
https://codereview.chromium.org/2086223002/diff/300001/chrome/browser/ui/search/instant_tab_unittest.cc File chrome/browser/ui/search/instant_tab_unittest.cc (right): https://codereview.chromium.org/2086223002/diff/300001/chrome/browser/ui/search/instant_tab_unittest.cc#newcode109 chrome/browser/ui/search/instant_tab_unittest.cc:109: search_tab()->DetermineIfPageSupportsInstant(); I think this needs a FlushForTesting(). https://codereview.chromium.org/2086223002/diff/300001/chrome/browser/ui/search/instant_tab_unittest.cc#newcode120 chrome/browser/ui/search/instant_tab_unittest.cc:120: ...
4 years, 2 months ago (2016-10-05 01:34:09 UTC) #64
Marc Treib
Some drive-by nits :) Also, is there a tracking bug for this that you could ...
4 years, 2 months ago (2016-10-05 08:13:48 UTC) #65
tibell
Address review comments
4 years, 2 months ago (2016-10-06 04:04:33 UTC) #66
tibell
PTAL treib@ could you take a look at the mojom file and help add some ...
4 years, 2 months ago (2016-10-06 04:06:44 UTC) #71
tibell
Merge
4 years, 2 months ago (2016-10-06 04:35:26 UTC) #74
tibell
On 2016/10/06 04:35:26, tibell wrote: > Merge +jam@ for trivial changes in render_frame_host_impl.cc and render_process_host_impl.cc.
4 years, 2 months ago (2016-10-06 05:55:21 UTC) #78
Sam McNally
lgtm https://codereview.chromium.org/2086223002/diff/340001/chrome/browser/ui/search/search_ipc_router.cc File chrome/browser/ui/search/search_ipc_router.cc (right): https://codereview.chromium.org/2086223002/diff/340001/chrome/browser/ui/search/search_ipc_router.cc#newcode279 chrome/browser/ui/search/search_ipc_router.cc:279: // TODO: Instead of rejecting messages check at ...
4 years, 2 months ago (2016-10-06 06:02:47 UTC) #79
Ken Rockot(use gerrit already)
FWIW new mojo/ changes LGTM
4 years, 2 months ago (2016-10-06 06:13:04 UTC) #80
dcheng
https://codereview.chromium.org/2086223002/diff/300001/chrome/browser/ui/search/search_ipc_router.h File chrome/browser/ui/search/search_ipc_router.h (right): https://codereview.chromium.org/2086223002/diff/300001/chrome/browser/ui/search/search_ipc_router.h#newcode242 chrome/browser/ui/search/search_ipc_router.h:242: chrome::mojom::SearchBox* search_box_for_testing_; On 2016/10/06 04:06:43, tibell wrote: > On ...
4 years, 2 months ago (2016-10-06 07:56:57 UTC) #83
Marc Treib
A few more comments - unfortunately, I'm not really familiar enough (yet) with all the ...
4 years, 2 months ago (2016-10-06 11:03:21 UTC) #84
jam
On 2016/10/06 05:55:21, tibell wrote: > On 2016/10/06 04:35:26, tibell wrote: > > Merge > ...
4 years, 2 months ago (2016-10-06 15:40:49 UTC) #85
tibell
Address more review comments (required merge)
4 years, 2 months ago (2016-10-13 05:30:25 UTC) #86
tibell
PTAL I've spent a couple of days trying to figure out the best way to ...
4 years, 2 months ago (2016-10-13 05:31:13 UTC) #87
tibell
Merge
4 years, 2 months ago (2016-10-13 06:20:02 UTC) #92
Marc Treib
lgtm Thanks! search lgtm with a few more comments and questions (most of which are ...
4 years, 2 months ago (2016-10-13 09:04:50 UTC) #97
tibell
Address treib's review comments
4 years, 2 months ago (2016-10-13 23:29:26 UTC) #98
tibell
Thanks for reviewing! https://codereview.chromium.org/2086223002/diff/380001/chrome/browser/ui/search/instant_tab_unittest.cc File chrome/browser/ui/search/instant_tab_unittest.cc (right): https://codereview.chromium.org/2086223002/diff/380001/chrome/browser/ui/search/instant_tab_unittest.cc#newcode49 chrome/browser/ui/search/instant_tab_unittest.cc:49: MOCK_METHOD0(GetSearchBox, chrome::mojom::SearchBox*(void)); On 2016/10/13 09:04:50, Marc ...
4 years, 2 months ago (2016-10-13 23:29:45 UTC) #100
tibell
CCing alexmos@ as there's some site-isolation related test failures and perhaps he has an idea ...
4 years, 2 months ago (2016-10-14 04:06:49 UTC) #104
tibell
Convert SearchBox to a RenderFrameObserver to support site isolation
4 years, 2 months ago (2016-10-14 05:36:21 UTC) #105
tibell
This needs another look. In order to try make the Mojo impl work with site ...
4 years, 2 months ago (2016-10-14 05:38:59 UTC) #108
dcheng
mojo lgtm with nits https://codereview.chromium.org/2086223002/diff/400001/chrome/browser/ui/search/search_ipc_router.cc File chrome/browser/ui/search/search_ipc_router.cc (right): https://codereview.chromium.org/2086223002/diff/400001/chrome/browser/ui/search/search_ipc_router.cc#newcode26 chrome/browser/ui/search/search_ipc_router.cc:26: SearchBoxClientFactoryImpl(content::WebContents* web_contents) Nit: explicit https://codereview.chromium.org/2086223002/diff/400001/chrome/browser/ui/search/search_ipc_router.cc#newcode50 ...
4 years, 2 months ago (2016-10-14 06:44:29 UTC) #111
Marc Treib
https://codereview.chromium.org/2086223002/diff/380001/chrome/browser/ui/search/instant_tab_unittest.cc File chrome/browser/ui/search/instant_tab_unittest.cc (right): https://codereview.chromium.org/2086223002/diff/380001/chrome/browser/ui/search/instant_tab_unittest.cc#newcode49 chrome/browser/ui/search/instant_tab_unittest.cc:49: MOCK_METHOD0(GetSearchBox, chrome::mojom::SearchBox*(void)); On 2016/10/13 23:29:44, tibell wrote: > On ...
4 years, 2 months ago (2016-10-14 08:58:21 UTC) #112
dcheng
https://codereview.chromium.org/2086223002/diff/400001/chrome/browser/ui/search/search_ipc_router.cc File chrome/browser/ui/search/search_ipc_router.cc (right): https://codereview.chromium.org/2086223002/diff/400001/chrome/browser/ui/search/search_ipc_router.cc#newcode50 chrome/browser/ui/search/search_ipc_router.cc:50: if (id != last_connected_rfh_) { On 2016/10/14 06:44:29, dcheng ...
4 years, 2 months ago (2016-10-14 23:43:37 UTC) #113
tibell
Merge
4 years, 2 months ago (2016-10-19 04:30:58 UTC) #114
tibell
Merge
4 years, 1 month ago (2016-10-24 00:06:49 UTC) #115
Marc Treib
Ping - what's the status of this CL?
4 years, 1 month ago (2016-11-22 12:52:04 UTC) #120
tibell
On 2016/11/22 12:52:04, Marc Treib wrote: > Ping - what's the status of this CL? ...
4 years ago (2016-11-24 23:18:29 UTC) #121
Marc Treib
On 2016/11/24 23:18:29, tibell wrote: > On 2016/11/22 12:52:04, Marc Treib wrote: > > Ping ...
4 years ago (2016-11-25 10:32:30 UTC) #122
tibell
On 2016/11/25 10:32:30, Marc Treib wrote: > On 2016/11/24 23:18:29, tibell wrote: > > On ...
4 years ago (2016-11-27 22:34:07 UTC) #123
Marc Treib
On 2016/11/27 22:34:07, tibell wrote: > On 2016/11/25 10:32:30, Marc Treib wrote: > > On ...
4 years ago (2016-11-28 15:49:38 UTC) #124
Marc Treib
On 2016/11/28 15:49:38, Marc Treib wrote: > On 2016/11/27 22:34:07, tibell wrote: > > On ...
4 years ago (2016-12-12 16:14:58 UTC) #125
tibell
Merge
3 years, 11 months ago (2017-01-03 04:01:14 UTC) #126
tibell
I've (partly) swapped back the problem the originally got this CL stuck into my head. ...
3 years, 11 months ago (2017-01-03 04:27:31 UTC) #131
tibell
Fix missed GetIsolatedProxy rename
3 years, 11 months ago (2017-01-03 04:31:04 UTC) #132
tibell
Remove left-over debug logging
3 years, 11 months ago (2017-01-03 04:57:41 UTC) #137
tibell
Only create SearchBox for main frame
3 years, 11 months ago (2017-01-11 06:42:56 UTC) #142
tibell
We must have a SearchBox for all frames
3 years, 11 months ago (2017-01-11 23:48:36 UTC) #147
tibell
Again only have a SearchBox from the main frame, but make sure it's accessed from ...
3 years, 11 months ago (2017-01-12 02:25:52 UTC) #150
tibell
I think I have this all figured out now. There are future improvements we could ...
3 years, 11 months ago (2017-01-12 03:55:48 UTC) #155
Ken Rockot(use gerrit already)
Mojo bits still LGTM. Do you want specific people to do another review pass? https://codereview.chromium.org/2086223002/diff/580001/chrome/common/BUILD.gn ...
3 years, 11 months ago (2017-01-12 21:17:19 UTC) #162
tibell
Address rockot's review comments
3 years, 11 months ago (2017-01-12 23:53:06 UTC) #163
tibell
Marc, could you please take another look to make sure I didn't break any of ...
3 years, 11 months ago (2017-01-12 23:54:22 UTC) #165
Sam McNally
lgtm https://codereview.chromium.org/2086223002/diff/580001/chrome/browser/ui/search/instant_search_prerenderer_unittest.cc File chrome/browser/ui/search/instant_search_prerenderer_unittest.cc (right): https://codereview.chromium.org/2086223002/diff/580001/chrome/browser/ui/search/instant_search_prerenderer_unittest.cc#newcode59 chrome/browser/ui/search/instant_search_prerenderer_unittest.cc:59: MOCK_METHOD0(GetSearchBox, chrome::mojom::SearchBox*(void)); Is the void param necessary? If ...
3 years, 11 months ago (2017-01-13 00:04:08 UTC) #167
Marc Treib
On 2017/01/12 23:54:22, tibell wrote: > Marc, could you please take another look to make ...
3 years, 11 months ago (2017-01-13 17:27:06 UTC) #170
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/2086223002/600001
3 years, 11 months ago (2017-01-15 23:45:53 UTC) #173
commit-bot: I haz the power
Failed to apply patch for chrome/browser/ui/BUILD.gn: While running git apply --index -p1; error: patch failed: ...
3 years, 11 months ago (2017-01-16 01:24:28 UTC) #175
tibell
Merge
3 years, 11 months ago (2017-01-16 01:48:58 UTC) #176
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/2086223002/620001
3 years, 11 months ago (2017-01-16 01:49:39 UTC) #179
commit-bot: I haz the power
3 years, 11 months ago (2017-01-16 03:21:51 UTC) #182
Message was sent while issue was closed.
Committed patchset #32 (id:620001) as
https://chromium.googlesource.com/chromium/src/+/e3df8cd8ac45539711b1f0b6a004...

Powered by Google App Engine
This is Rietveld 408576698