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

Issue 2792063003: Factor out RenderWidgetHostConnector (Closed)

Created:
3 years, 8 months ago by Jinsuk Kim
Modified:
3 years, 8 months ago
Reviewers:
boliu
CC:
chromium-reviews, yusukes+watch_chromium.org, shuchen+watch_chromium.org, jam, nona+watch_chromium.org, darin-cc_chromium.org, agrieve+watch_chromium.org, James Su
Target Ref:
refs/heads/master
Project:
chromium
Visibility:
Public.

Description

Factor out RenderWidgetHostConnector Factored out RenderWidgetHostConnector from ImeAdapter with an intent to share the functionally with other classes. Upcoming SelectionPopup- Controller will also inherit it to manage its connection to Render- WidgetHostView. BUG=662908 Review-Url: https://codereview.chromium.org/2792063003 Cr-Commit-Position: refs/heads/master@{#465180} Committed: https://chromium.googlesource.com/chromium/src/+/7e377438d1c86ec06009e10d24a88ea84342e594

Patch Set 1 #

Patch Set 2 : fix tests #

Patch Set 3 : format #

Total comments: 16

Patch Set 4 : RenderWidgetHostConnnector #

Total comments: 7

Patch Set 5 : rebase #

Patch Set 6 : no rwhva() #

Patch Set 7 : no weakptr #

Patch Set 8 : test #

Total comments: 1

Patch Set 9 : rebase #

Patch Set 10 : composed connector #

Total comments: 1

Patch Set 11 : destruction observer #

Total comments: 10

Patch Set 12 : class #

Total comments: 6

Patch Set 13 : observer in ::Destroy #

Total comments: 10

Patch Set 14 : dcheck swap #

Total comments: 4

Patch Set 15 : RenderWidgetHostObserver #

Patch Set 16 : private observer #

Total comments: 8

Patch Set 17 : add tests back #

Patch Set 18 : fix tests #

Patch Set 19 : fix more tests #

Patch Set 20 : fix remaining tests #

Total comments: 4

Patch Set 21 : add more test #

Patch Set 22 : no interstitial flag/var #

Total comments: 5

Patch Set 23 : base::ObserverList #

Unified diffs Side-by-side diffs Delta from patch set Stats (+409 lines, -76 lines) Patch
M content/browser/BUILD.gn View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -0 lines 0 comments Download
M content/browser/android/ime_adapter_android.h View 1 2 3 4 5 6 7 8 10 5 chunks +9 lines, -16 lines 0 comments Download
M content/browser/android/ime_adapter_android.cc View 1 2 3 4 5 6 7 8 9 10 3 chunks +11 lines, -58 lines 0 comments Download
A content/browser/android/render_widget_host_connector.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +47 lines, -0 lines 0 comments Download
A content/browser/android/render_widget_host_connector.cc 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 +137 lines, -0 lines 0 comments Download
A content/browser/android/render_widget_host_connector_browsertest.h View 1 2 3 4 5 6 7 10 11 12 13 14 15 16 1 chunk +52 lines, -0 lines 0 comments Download
A content/browser/android/render_widget_host_connector_browsertest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +117 lines, -0 lines 0 comments Download
M content/browser/renderer_host/render_widget_host_view_android.h 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 +15 lines, -0 lines 0 comments Download
M content/browser/renderer_host/render_widget_host_view_android.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 3 chunks +15 lines, -2 lines 0 comments Download
M content/test/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +4 lines, -0 lines 0 comments Download

Messages

Total messages: 106 (49 generated)
Jinsuk Kim
boliu@chromium.org: Please review changes in content/ tedchoc@chromium.org: Please review changes in chrome/
3 years, 8 months ago (2017-04-07 05:48:32 UTC) #14
boliu
skimmed this I think this can be broken up into smaller pieces: factor out the ...
3 years, 8 months ago (2017-04-07 18:47:10 UTC) #17
boliu
https://codereview.chromium.org/2792063003/diff/120001/content/browser/android/render_process_connector.h File content/browser/android/render_process_connector.h (right): https://codereview.chromium.org/2792063003/diff/120001/content/browser/android/render_process_connector.h#newcode48 content/browser/android/render_process_connector.h:48: RenderWidgetHostViewAndroid* rwhva() const { return rwhva_.get(); } On 2017/04/07 ...
3 years, 8 months ago (2017-04-07 18:48:40 UTC) #18
Jinsuk Kim
Left only the RenderWidgetHostConnector. Haven't finished writing the test. Will add one soon. The tests ...
3 years, 8 months ago (2017-04-10 05:11:48 UTC) #21
boliu
I think biggest thing remaining is we don't want to to track rwhva lifetime explicitly, ...
3 years, 8 months ago (2017-04-10 18:08:43 UTC) #22
Jinsuk Kim
https://codereview.chromium.org/2792063003/diff/140001/content/browser/android/ime_adapter_android.h File content/browser/android/ime_adapter_android.h (right): https://codereview.chromium.org/2792063003/diff/140001/content/browser/android/ime_adapter_android.h#newcode116 content/browser/android/ime_adapter_android.h:116: bool connected_; On 2017/04/10 18:08:43, boliu wrote: > java ...
3 years, 8 months ago (2017-04-11 01:41:58 UTC) #23
boliu
https://codereview.chromium.org/2792063003/diff/140001/content/browser/android/render_widget_host_connector.h File content/browser/android/render_widget_host_connector.h (right): https://codereview.chromium.org/2792063003/diff/140001/content/browser/android/render_widget_host_connector.h#newcode36 content/browser/android/render_widget_host_connector.h:36: RenderWidgetHostViewAndroid* rwhva() const { On 2017/04/11 01:41:58, Jinsuk Kim ...
3 years, 8 months ago (2017-04-11 01:47:04 UTC) #24
Jinsuk Kim
I'll add a test soon. Not sure how to set up render widget host/view in ...
3 years, 8 months ago (2017-04-11 02:28:09 UTC) #25
boliu
https://codereview.chromium.org/2792063003/diff/140001/content/browser/android/render_widget_host_connector.h File content/browser/android/render_widget_host_connector.h (right): https://codereview.chromium.org/2792063003/diff/140001/content/browser/android/render_widget_host_connector.h#newcode36 content/browser/android/render_widget_host_connector.h:36: RenderWidgetHostViewAndroid* rwhva() const { On 2017/04/11 02:28:09, Jinsuk Kim ...
3 years, 8 months ago (2017-04-11 02:34:24 UTC) #26
Jinsuk Kim
Add tests. PTAL
3 years, 8 months ago (2017-04-11 06:50:52 UTC) #27
boliu
https://codereview.chromium.org/2792063003/diff/220001/content/browser/renderer_host/render_widget_host_view_android.cc File content/browser/renderer_host/render_widget_host_view_android.cc (right): https://codereview.chromium.org/2792063003/diff/220001/content/browser/renderer_host/render_widget_host_view_android.cc#newcode500 content/browser/renderer_host/render_widget_host_view_android.cc:500: ime_adapter_android_->ResetRenderWidgetHostView(this); no I mean this should be render_widget_host_connector
3 years, 8 months ago (2017-04-11 15:16:14 UTC) #28
Jinsuk Kim
Made several changes to the previous patch about following. Please see if they make sense ...
3 years, 8 months ago (2017-04-12 09:43:15 UTC) #31
Jinsuk Kim
On 2017/04/12 09:43:15, Jinsuk Kim wrote: > - Nulling out rwhva pointer in ImeAdapterAndroid at ...
3 years, 8 months ago (2017-04-12 12:26:10 UTC) #32
boliu
On 2017/04/12 12:26:10, Jinsuk Kim wrote: > On 2017/04/12 09:43:15, Jinsuk Kim wrote: > > ...
3 years, 8 months ago (2017-04-12 16:07:24 UTC) #33
boliu
On 2017/04/12 09:43:15, Jinsuk Kim wrote: > Made several changes to the previous patch about ...
3 years, 8 months ago (2017-04-12 16:29:14 UTC) #34
boliu
https://codereview.chromium.org/2792063003/diff/300001/content/browser/android/render_widget_host_connector.h File content/browser/android/render_widget_host_connector.h (right): https://codereview.chromium.org/2792063003/diff/300001/content/browser/android/render_widget_host_connector.h#newcode35 content/browser/android/render_widget_host_connector.h:35: RenderWidgetHostViewAndroid* new_rwhva) = 0; as discussed in chat, add ...
3 years, 8 months ago (2017-04-12 16:29:22 UTC) #35
Jinsuk Kim
On 2017/04/12 16:07:24, boliu wrote: > On 2017/04/12 12:26:10, Jinsuk Kim wrote: > > On ...
3 years, 8 months ago (2017-04-12 23:09:28 UTC) #36
boliu
I'm thinking of public interface like this: class ActiveRenderWidgetHostViewObserver { public: void RWHVAChanged(RWHVA* old, RWHVA* ...
3 years, 8 months ago (2017-04-12 23:17:46 UTC) #37
Jinsuk Kim
On 2017/04/12 23:17:46, boliu wrote: > I'm thinking of public interface like this: > > ...
3 years, 8 months ago (2017-04-13 03:10:11 UTC) #38
boliu
https://codereview.chromium.org/2792063003/diff/320001/content/browser/android/render_widget_host_connector.cc File content/browser/android/render_widget_host_connector.cc (right): https://codereview.chromium.org/2792063003/diff/320001/content/browser/android/render_widget_host_connector.cc#newcode31 content/browser/android/render_widget_host_connector.cc:31: UpdateRenderWidgetHostView(old_view, new_view); hmm, I'm not sure how interstitials are ...
3 years, 8 months ago (2017-04-13 03:44:13 UTC) #39
Jinsuk Kim
https://codereview.chromium.org/2792063003/diff/320001/content/browser/android/render_widget_host_connector.cc File content/browser/android/render_widget_host_connector.cc (right): https://codereview.chromium.org/2792063003/diff/320001/content/browser/android/render_widget_host_connector.cc#newcode31 content/browser/android/render_widget_host_connector.cc:31: UpdateRenderWidgetHostView(old_view, new_view); On 2017/04/13 03:44:13, boliu wrote: > hmm, ...
3 years, 8 months ago (2017-04-13 04:20:21 UTC) #40
boliu
https://codereview.chromium.org/2792063003/diff/320001/content/browser/android/render_widget_host_connector.cc File content/browser/android/render_widget_host_connector.cc (right): https://codereview.chromium.org/2792063003/diff/320001/content/browser/android/render_widget_host_connector.cc#newcode52 content/browser/android/render_widget_host_connector.cc:52: connector_->UpdateRenderProcessConnection(nullptr, nullptr); On 2017/04/13 04:20:20, Jinsuk Kim wrote: > ...
3 years, 8 months ago (2017-04-13 04:29:41 UTC) #41
boliu
https://codereview.chromium.org/2792063003/diff/320001/content/browser/android/render_widget_host_connector.cc File content/browser/android/render_widget_host_connector.cc (right): https://codereview.chromium.org/2792063003/diff/320001/content/browser/android/render_widget_host_connector.cc#newcode52 content/browser/android/render_widget_host_connector.cc:52: connector_->UpdateRenderProcessConnection(nullptr, nullptr); On 2017/04/13 04:20:20, Jinsuk Kim wrote: > ...
3 years, 8 months ago (2017-04-13 04:29:42 UTC) #42
Jinsuk Kim
https://codereview.chromium.org/2792063003/diff/320001/content/browser/android/render_widget_host_connector.cc File content/browser/android/render_widget_host_connector.cc (right): https://codereview.chromium.org/2792063003/diff/320001/content/browser/android/render_widget_host_connector.cc#newcode52 content/browser/android/render_widget_host_connector.cc:52: connector_->UpdateRenderProcessConnection(nullptr, nullptr); On 2017/04/13 04:29:41, boliu wrote: > On ...
3 years, 8 months ago (2017-04-13 04:44:06 UTC) #43
boliu
https://codereview.chromium.org/2792063003/diff/360001/content/browser/android/render_widget_host_connector.cc File content/browser/android/render_widget_host_connector.cc (right): https://codereview.chromium.org/2792063003/diff/360001/content/browser/android/render_widget_host_connector.cc#newcode27 content/browser/android/render_widget_host_connector.cc:27: : nullptr; Like I said earlier, UpdateRenderWidgetHostView is always ...
3 years, 8 months ago (2017-04-13 21:26:59 UTC) #44
Jinsuk Kim
https://codereview.chromium.org/2792063003/diff/360001/content/browser/android/render_widget_host_connector.cc File content/browser/android/render_widget_host_connector.cc (right): https://codereview.chromium.org/2792063003/diff/360001/content/browser/android/render_widget_host_connector.cc#newcode27 content/browser/android/render_widget_host_connector.cc:27: : nullptr; On 2017/04/13 21:26:59, boliu wrote: > Like ...
3 years, 8 months ago (2017-04-13 23:00:43 UTC) #45
boliu
https://codereview.chromium.org/2792063003/diff/360001/content/browser/android/render_widget_host_connector.h File content/browser/android/render_widget_host_connector.h (right): https://codereview.chromium.org/2792063003/diff/360001/content/browser/android/render_widget_host_connector.h#newcode71 content/browser/android/render_widget_host_connector.h:71: std::unique_ptr<Observer> render_widget_observer_; On 2017/04/13 23:00:43, Jinsuk Kim wrote: > ...
3 years, 8 months ago (2017-04-13 23:03:32 UTC) #46
boliu
https://codereview.chromium.org/2792063003/diff/380001/content/browser/android/render_widget_host_connector.cc File content/browser/android/render_widget_host_connector.cc (right): https://codereview.chromium.org/2792063003/diff/380001/content/browser/android/render_widget_host_connector.cc#newcode31 content/browser/android/render_widget_host_connector.cc:31: DCHECK(old_view == rwhva_); nit: DCHECK_EQ https://codereview.chromium.org/2792063003/diff/380001/content/browser/android/render_widget_host_connector.cc#newcode44 content/browser/android/render_widget_host_connector.cc:44: UpdateRenderWidgetHostView(GetRenderWidgetHostViewAndroid(), nullptr); ...
3 years, 8 months ago (2017-04-13 23:06:50 UTC) #47
Jinsuk Kim
https://codereview.chromium.org/2792063003/diff/360001/content/browser/android/render_widget_host_connector.h File content/browser/android/render_widget_host_connector.h (right): https://codereview.chromium.org/2792063003/diff/360001/content/browser/android/render_widget_host_connector.h#newcode71 content/browser/android/render_widget_host_connector.h:71: std::unique_ptr<Observer> render_widget_observer_; On 2017/04/13 23:03:32, boliu wrote: > On ...
3 years, 8 months ago (2017-04-13 23:31:10 UTC) #48
boliu
https://codereview.chromium.org/2792063003/diff/360001/content/browser/android/render_widget_host_connector.h File content/browser/android/render_widget_host_connector.h (right): https://codereview.chromium.org/2792063003/diff/360001/content/browser/android/render_widget_host_connector.h#newcode71 content/browser/android/render_widget_host_connector.h:71: std::unique_ptr<Observer> render_widget_observer_; On 2017/04/13 23:31:10, Jinsuk Kim wrote: > ...
3 years, 8 months ago (2017-04-13 23:33:38 UTC) #49
Jinsuk Kim
https://codereview.chromium.org/2792063003/diff/360001/content/browser/android/render_widget_host_connector.h File content/browser/android/render_widget_host_connector.h (right): https://codereview.chromium.org/2792063003/diff/360001/content/browser/android/render_widget_host_connector.h#newcode71 content/browser/android/render_widget_host_connector.h:71: std::unique_ptr<Observer> render_widget_observer_; On 2017/04/13 23:33:38, boliu wrote: > On ...
3 years, 8 months ago (2017-04-13 23:45:14 UTC) #50
boliu
lgtm /w comments https://codereview.chromium.org/2792063003/diff/420001/content/browser/android/render_widget_host_connector.cc File content/browser/android/render_widget_host_connector.cc (right): https://codereview.chromium.org/2792063003/diff/420001/content/browser/android/render_widget_host_connector.cc#newcode51 content/browser/android/render_widget_host_connector.cc:51: RenderWidgetHostConnector::Observer::~Observer() {} DCHECK(rwhva_) is null here ...
3 years, 8 months ago (2017-04-14 01:10:07 UTC) #51
Jinsuk Kim
Also put back the tests. https://codereview.chromium.org/2792063003/diff/420001/content/browser/android/render_widget_host_connector.cc File content/browser/android/render_widget_host_connector.cc (right): https://codereview.chromium.org/2792063003/diff/420001/content/browser/android/render_widget_host_connector.cc#newcode51 content/browser/android/render_widget_host_connector.cc:51: RenderWidgetHostConnector::Observer::~Observer() {} On 2017/04/14 ...
3 years, 8 months ago (2017-04-14 02:16:33 UTC) #53
Jinsuk Kim
Modified further to fix failing tests. PTAL. - Your were right about the possiblity of ...
3 years, 8 months ago (2017-04-14 15:32:04 UTC) #62
boliu
https://codereview.chromium.org/2792063003/diff/600001/content/browser/android/render_widget_host_connector.cc File content/browser/android/render_widget_host_connector.cc (right): https://codereview.chromium.org/2792063003/diff/600001/content/browser/android/render_widget_host_connector.cc#newcode128 content/browser/android/render_widget_host_connector.cc:128: old_rwhva->RemoveDestructionObserver(this); this doesn't work anymore. I think you need ...
3 years, 8 months ago (2017-04-15 00:52:55 UTC) #67
Jinsuk Kim
https://codereview.chromium.org/2792063003/diff/600001/content/browser/android/render_widget_host_connector.cc File content/browser/android/render_widget_host_connector.cc (right): https://codereview.chromium.org/2792063003/diff/600001/content/browser/android/render_widget_host_connector.cc#newcode128 content/browser/android/render_widget_host_connector.cc:128: old_rwhva->RemoveDestructionObserver(this); On 2017/04/15 00:52:54, boliu wrote: > this doesn't ...
3 years, 8 months ago (2017-04-15 01:19:07 UTC) #68
boliu
https://codereview.chromium.org/2792063003/diff/600001/content/browser/android/render_widget_host_connector.cc File content/browser/android/render_widget_host_connector.cc (right): https://codereview.chromium.org/2792063003/diff/600001/content/browser/android/render_widget_host_connector.cc#newcode128 content/browser/android/render_widget_host_connector.cc:128: old_rwhva->RemoveDestructionObserver(this); On 2017/04/15 01:19:07, Jinsuk Kim wrote: > On ...
3 years, 8 months ago (2017-04-15 02:06:21 UTC) #69
Jinsuk Kim
https://codereview.chromium.org/2792063003/diff/600001/content/browser/android/render_widget_host_connector.cc File content/browser/android/render_widget_host_connector.cc (right): https://codereview.chromium.org/2792063003/diff/600001/content/browser/android/render_widget_host_connector.cc#newcode128 content/browser/android/render_widget_host_connector.cc:128: old_rwhva->RemoveDestructionObserver(this); On 2017/04/15 02:06:21, boliu wrote: > On 2017/04/15 ...
3 years, 8 months ago (2017-04-16 23:16:43 UTC) #70
Jinsuk Kim
> Main rwhva is not connected to ime, so its destruction doesn't affect much. It ...
3 years, 8 months ago (2017-04-17 01:11:49 UTC) #76
boliu
On 2017/04/16 23:16:43, Jinsuk Kim wrote: > https://codereview.chromium.org/2792063003/diff/600001/content/browser/android/render_widget_host_connector.cc > File content/browser/android/render_widget_host_connector.cc (right): > > https://codereview.chromium.org/2792063003/diff/600001/content/browser/android/render_widget_host_connector.cc#newcode128 ...
3 years, 8 months ago (2017-04-17 16:24:15 UTC) #81
Jinsuk Kim
On 2017/04/17 16:24:15, boliu wrote: > On 2017/04/16 23:16:43, Jinsuk Kim wrote: > > > ...
3 years, 8 months ago (2017-04-17 22:33:50 UTC) #82
boliu
why do you need to separate main vs interstitial then? Seems like you don't care ...
3 years, 8 months ago (2017-04-17 22:44:40 UTC) #83
Jinsuk Kim
On 2017/04/17 22:44:40, boliu wrote: > why do you need to separate main vs interstitial ...
3 years, 8 months ago (2017-04-17 23:00:08 UTC) #84
boliu
On 2017/04/17 23:00:08, Jinsuk Kim wrote: > On 2017/04/17 22:44:40, boliu wrote: > > why ...
3 years, 8 months ago (2017-04-17 23:02:55 UTC) #85
Jinsuk Kim
On 2017/04/17 23:02:55, boliu wrote: > On 2017/04/17 23:00:08, Jinsuk Kim wrote: > > On ...
3 years, 8 months ago (2017-04-17 23:11:53 UTC) #86
boliu
On 2017/04/17 23:11:53, Jinsuk Kim wrote: > On 2017/04/17 23:02:55, boliu wrote: > > On ...
3 years, 8 months ago (2017-04-17 23:16:50 UTC) #87
Jinsuk Kim
On 2017/04/17 23:16:50, boliu wrote: > On 2017/04/17 23:11:53, Jinsuk Kim wrote: > > On ...
3 years, 8 months ago (2017-04-17 23:22:09 UTC) #88
Jinsuk Kim
PTAL
3 years, 8 months ago (2017-04-18 03:00:58 UTC) #89
boliu
lgtm % comment https://codereview.chromium.org/2792063003/diff/660001/content/browser/android/render_widget_host_connector.cc File content/browser/android/render_widget_host_connector.cc (right): https://codereview.chromium.org/2792063003/diff/660001/content/browser/android/render_widget_host_connector.cc#newcode96 content/browser/android/render_widget_host_connector.cc:96: connector_->UpdateRenderProcessConnection(active_rwhva_, nullptr); should this just be ...
3 years, 8 months ago (2017-04-18 03:53:58 UTC) #90
Jinsuk Kim
https://codereview.chromium.org/2792063003/diff/660001/content/browser/android/render_widget_host_connector.cc File content/browser/android/render_widget_host_connector.cc (right): https://codereview.chromium.org/2792063003/diff/660001/content/browser/android/render_widget_host_connector.cc#newcode96 content/browser/android/render_widget_host_connector.cc:96: connector_->UpdateRenderProcessConnection(active_rwhva_, nullptr); On 2017/04/18 03:53:58, boliu wrote: > should ...
3 years, 8 months ago (2017-04-18 04:25:34 UTC) #91
boliu
https://codereview.chromium.org/2792063003/diff/660001/content/browser/android/render_widget_host_connector.cc File content/browser/android/render_widget_host_connector.cc (right): https://codereview.chromium.org/2792063003/diff/660001/content/browser/android/render_widget_host_connector.cc#newcode96 content/browser/android/render_widget_host_connector.cc:96: connector_->UpdateRenderProcessConnection(active_rwhva_, nullptr); On 2017/04/18 04:25:34, Jinsuk Kim wrote: > ...
3 years, 8 months ago (2017-04-18 04:45:32 UTC) #92
boliu
https://codereview.chromium.org/2792063003/diff/660001/content/browser/android/render_widget_host_connector.cc File content/browser/android/render_widget_host_connector.cc (right): https://codereview.chromium.org/2792063003/diff/660001/content/browser/android/render_widget_host_connector.cc#newcode96 content/browser/android/render_widget_host_connector.cc:96: connector_->UpdateRenderProcessConnection(active_rwhva_, nullptr); On 2017/04/18 04:45:32, boliu wrote: > On ...
3 years, 8 months ago (2017-04-18 04:47:09 UTC) #93
Jinsuk Kim
On 2017/04/18 04:47:09, boliu wrote: > https://codereview.chromium.org/2792063003/diff/660001/content/browser/android/render_widget_host_connector.cc > File content/browser/android/render_widget_host_connector.cc (right): > > https://codereview.chromium.org/2792063003/diff/660001/content/browser/android/render_widget_host_connector.cc#newcode96 > ...
3 years, 8 months ago (2017-04-18 05:00:16 UTC) #94
boliu
On 2017/04/18 05:00:16, Jinsuk Kim wrote: > On 2017/04/18 04:47:09, boliu wrote: > > > ...
3 years, 8 months ago (2017-04-18 05:05:16 UTC) #95
Jinsuk Kim
Thanks for the review. https://codereview.chromium.org/2792063003/diff/660001/content/browser/android/render_widget_host_connector.cc File content/browser/android/render_widget_host_connector.cc (right): https://codereview.chromium.org/2792063003/diff/660001/content/browser/android/render_widget_host_connector.cc#newcode96 content/browser/android/render_widget_host_connector.cc:96: connector_->UpdateRenderProcessConnection(active_rwhva_, nullptr); On 2017/04/18 04:47:09, ...
3 years, 8 months ago (2017-04-18 05:20:23 UTC) #96
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/2792063003/680001
3 years, 8 months ago (2017-04-18 08:48:21 UTC) #103
commit-bot: I haz the power
3 years, 8 months ago (2017-04-18 08:53:09 UTC) #106
Message was sent while issue was closed.
Committed patchset #23 (id:680001) as
https://chromium.googlesource.com/chromium/src/+/7e377438d1c86ec06009e10d24a8...

Powered by Google App Engine
This is Rietveld 408576698