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

Issue 2617443002: Implement ThreadedInputConnection.deleteSurroundingTextInCodePoints() (Closed)

Created:
3 years, 11 months ago by yabinh
Modified:
3 years, 9 months ago
CC:
agrieve+watch_chromium.org, blink-reviews, blink-reviews-api_chromium.org, chromium-reviews, creis+watch_chromium.org, darin-cc_chromium.org, dglazkov+blink, jam, kinuko+watch, mlamouri+watch-content_chromium.org, nasko+codewatch_chromium.org, Seigo Nonaka
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Implement ThreadedInputConnection.deleteSurroundingTextInCodePoints() Android N added a new abstract method InputConnection.deleteSurroundingTextInCodePoints(), which is a variant of deleteSurroundingText() with 2 major differences: (1) The lengths are supplied in code points, not in Java chars (the case of deleteSurroundingText()) or in glyphs. (2) This method does nothing if there are one or more invalid surrogate pairs in the requested range. In order to implement deleteSurroundingTextInCodePoints(), this CL converts the deletion length in code points to that in Java chars, and calls deleteSurroundingText() to delete. Note that deleteSurroundingTextInCodePoints() was introduced in Android N (Api level 24), but the Android repository used in Chrome is behind that (APi level 23). So this function can't be called by keyboard apps currently. BUG=595525 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_site_isolation Review-Url: https://codereview.chromium.org/2617443002 Cr-Commit-Position: refs/heads/master@{#453440} Committed: https://chromium.googlesource.com/chromium/src/+/5290fd91df3f6c5e5ca054b0bd467cff543bbc19

Patch Set 1 #

Patch Set 2 : Add some comments. #

Patch Set 3 : Add more comments #

Total comments: 19

Patch Set 4 : Address changwan@'s review #

Patch Set 5 : Convert UTF8 to UTF16 #

Total comments: 10

Patch Set 6 : For changwan's review #

Patch Set 7 : Don't convert utf8 #

Total comments: 39

Patch Set 8 : Address yosin@'s review #

Total comments: 4

Patch Set 9 : Introduce BackwardCodePointStateMachine and ForwardCodePointStateMachine #

Patch Set 10 : Fixed 2 tests #

Total comments: 16

Patch Set 11 : Add some DCHECK #

Total comments: 8

Patch Set 12 : Address dcheng@'s review #

Unified diffs Side-by-side diffs Delta from patch set Stats (+472 lines, -7 lines) Patch
M content/browser/frame_host/render_frame_host_impl.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +8 lines, -1 line 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 1 chunk +6 lines, -0 lines 0 comments Download
M content/browser/renderer_host/ime_adapter_android.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +5 lines, -0 lines 0 comments Download
M content/browser/renderer_host/ime_adapter_android.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +11 lines, -0 lines 0 comments Download
M content/common/input_messages.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +10 lines, -1 line 0 comments Download
M content/public/android/java/src/org/chromium/content/browser/input/ImeAdapter.java View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +22 lines, -0 lines 0 comments Download
M content/public/android/java/src/org/chromium/content/browser/input/ThreadedInputConnection.java View 1 2 3 4 5 1 chunk +15 lines, -3 lines 0 comments Download
M content/public/android/javatests/src/org/chromium/content/browser/input/ImeTest.java View 1 2 3 4 5 6 7 8 9 10 11 4 chunks +90 lines, -0 lines 0 comments Download
M content/renderer/render_frame_impl.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -0 lines 0 comments Download
M content/renderer/render_frame_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +8 lines, -0 lines 0 comments Download
M content/renderer/render_view_browsertest.cc View 1 2 3 4 5 6 7 8 1 chunk +25 lines, -0 lines 0 comments Download
M content/test/test_render_frame.h View 1 chunk +1 line, -0 lines 0 comments Download
M content/test/test_render_frame.cc View 1 chunk +4 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/editing/InputMethodController.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/core/editing/InputMethodController.cpp View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +112 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/editing/InputMethodControllerTest.cpp View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +119 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/web/WebLocalFrameImpl.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/web/WebLocalFrameImpl.cpp View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +16 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/web/tests/data/input_field_populated.html View 1 2 3 4 5 6 7 1 chunk +2 lines, -0 lines 0 comments Download
M third_party/WebKit/public/web/WebLocalFrame.h View 1 2 3 4 5 6 7 8 1 chunk +8 lines, -1 line 0 comments Download
M third_party/WebKit/public/web/WebPlugin.h View 1 2 3 4 5 6 7 1 chunk +7 lines, -1 line 0 comments Download

Messages

Total messages: 104 (60 generated)
yabinh
PTAL. Thanks!
3 years, 11 months ago (2017-01-04 06:15:32 UTC) #7
aelias_OOO_until_Jul13
https://codereview.chromium.org/2617443002/diff/40001/content/public/android/javatests/src/org/chromium/content/browser/input/ImeTest.java File content/public/android/javatests/src/org/chromium/content/browser/input/ImeTest.java (right): https://codereview.chromium.org/2617443002/diff/40001/content/public/android/javatests/src/org/chromium/content/browser/input/ImeTest.java#newcode1771 content/public/android/javatests/src/org/chromium/content/browser/input/ImeTest.java:1771: // Note that deleteSurroundingTextInCodePoints() was introduced in Android N ...
3 years, 11 months ago (2017-01-04 23:18:14 UTC) #16
yabinh
https://codereview.chromium.org/2617443002/diff/40001/content/public/android/javatests/src/org/chromium/content/browser/input/ImeTest.java File content/public/android/javatests/src/org/chromium/content/browser/input/ImeTest.java (right): https://codereview.chromium.org/2617443002/diff/40001/content/public/android/javatests/src/org/chromium/content/browser/input/ImeTest.java#newcode1771 content/public/android/javatests/src/org/chromium/content/browser/input/ImeTest.java:1771: // Note that deleteSurroundingTextInCodePoints() was introduced in Android N ...
3 years, 11 months ago (2017-01-05 01:38:50 UTC) #17
yabinh
https://codereview.chromium.org/2617443002/diff/40001/content/public/android/javatests/src/org/chromium/content/browser/input/ImeTest.java File content/public/android/javatests/src/org/chromium/content/browser/input/ImeTest.java (right): https://codereview.chromium.org/2617443002/diff/40001/content/public/android/javatests/src/org/chromium/content/browser/input/ImeTest.java#newcode1771 content/public/android/javatests/src/org/chromium/content/browser/input/ImeTest.java:1771: // Note that deleteSurroundingTextInCodePoints() was introduced in Android N ...
3 years, 11 months ago (2017-01-05 02:04:56 UTC) #18
Changwan Ryu
On 2017/01/05 02:04:56, yabinh wrote: > https://codereview.chromium.org/2617443002/diff/40001/content/public/android/javatests/src/org/chromium/content/browser/input/ImeTest.java > File > content/public/android/javatests/src/org/chromium/content/browser/input/ImeTest.java > (right): > > ...
3 years, 11 months ago (2017-01-05 02:31:37 UTC) #19
Changwan Ryu
https://codereview.chromium.org/2617443002/diff/40001/content/browser/frame_host/render_frame_host_impl.h File content/browser/frame_host/render_frame_host_impl.h (right): https://codereview.chromium.org/2617443002/diff/40001/content/browser/frame_host/render_frame_host_impl.h#newcode446 content/browser/frame_host/render_frame_host_impl.h:446: // requested range Period at the end? https://codereview.chromium.org/2617443002/diff/40001/content/public/android/javatests/src/org/chromium/content/browser/input/ImeTest.java File ...
3 years, 11 months ago (2017-01-11 02:00:27 UTC) #20
Changwan Ryu
https://codereview.chromium.org/2617443002/diff/40001/third_party/WebKit/Source/core/editing/InputMethodController.cpp File third_party/WebKit/Source/core/editing/InputMethodController.cpp (right): https://codereview.chromium.org/2617443002/diff/40001/third_party/WebKit/Source/core/editing/InputMethodController.cpp#newcode202 third_party/WebKit/Source/core/editing/InputMethodController.cpp:202: bool hasInvalidSurrogatePair(const LChar* text, This is somewhat weird. UTF-8 ...
3 years, 11 months ago (2017-01-11 06:44:33 UTC) #21
yabinh
changwan@, PTAL, thanks! https://codereview.chromium.org/2617443002/diff/40001/content/browser/frame_host/render_frame_host_impl.h File content/browser/frame_host/render_frame_host_impl.h (right): https://codereview.chromium.org/2617443002/diff/40001/content/browser/frame_host/render_frame_host_impl.h#newcode446 content/browser/frame_host/render_frame_host_impl.h:446: // requested range On 2017/01/11 02:00:27, ...
3 years, 11 months ago (2017-01-24 11:39:56 UTC) #30
Changwan Ryu
https://codereview.chromium.org/2617443002/diff/80001/third_party/WebKit/Source/core/editing/InputMethodController.cpp File third_party/WebKit/Source/core/editing/InputMethodController.cpp (right): https://codereview.chromium.org/2617443002/diff/80001/third_party/WebKit/Source/core/editing/InputMethodController.cpp#newcode209 third_party/WebKit/Source/core/editing/InputMethodController.cpp:209: std::pair<int, int> convertDeletionLengthForDeleteSurroundingTextInCodePoints( The name is a bit unnecessarily ...
3 years, 11 months ago (2017-01-25 07:30:56 UTC) #31
yabinh
https://codereview.chromium.org/2617443002/diff/80001/third_party/WebKit/Source/core/editing/InputMethodController.cpp File third_party/WebKit/Source/core/editing/InputMethodController.cpp (right): https://codereview.chromium.org/2617443002/diff/80001/third_party/WebKit/Source/core/editing/InputMethodController.cpp#newcode209 third_party/WebKit/Source/core/editing/InputMethodController.cpp:209: std::pair<int, int> convertDeletionLengthForDeleteSurroundingTextInCodePoints( On 2017/01/25 07:30:56, Changwan Ryu wrote: ...
3 years, 10 months ago (2017-02-08 12:32:42 UTC) #39
Changwan Ryu
https://codereview.chromium.org/2617443002/diff/80001/third_party/WebKit/Source/core/editing/InputMethodController.cpp File third_party/WebKit/Source/core/editing/InputMethodController.cpp (right): https://codereview.chromium.org/2617443002/diff/80001/third_party/WebKit/Source/core/editing/InputMethodController.cpp#newcode220 third_party/WebKit/Source/core/editing/InputMethodController.cpp:220: if (text.is8Bit()) { On 2017/02/08 12:32:41, yabinh wrote: > ...
3 years, 10 months ago (2017-02-09 01:06:34 UTC) #40
yabinh
PTAL~ https://codereview.chromium.org/2617443002/diff/80001/third_party/WebKit/Source/core/editing/InputMethodController.cpp File third_party/WebKit/Source/core/editing/InputMethodController.cpp (right): https://codereview.chromium.org/2617443002/diff/80001/third_party/WebKit/Source/core/editing/InputMethodController.cpp#newcode220 third_party/WebKit/Source/core/editing/InputMethodController.cpp:220: if (text.is8Bit()) { On 2017/02/09 01:06:34, Changwan Ryu ...
3 years, 10 months ago (2017-02-09 05:21:37 UTC) #43
Changwan Ryu
input/ lgtm also non-owner lgtm for other files
3 years, 10 months ago (2017-02-09 05:30:25 UTC) #44
yabinh
Thanks! Adding yosin@ as reviewer.
3 years, 10 months ago (2017-02-09 05:33:54 UTC) #46
yosin_UTC9
https://codereview.chromium.org/2617443002/diff/140001/content/common/input_messages.h File content/common/input_messages.h (right): https://codereview.chromium.org/2617443002/diff/140001/content/common/input_messages.h#newcode168 content/common/input_messages.h:168: IPC_MESSAGE_ROUTED2(InputMsg_DeleteSurroundingText, Just curiosity, is InputMsg subject of Mojoification? It ...
3 years, 10 months ago (2017-02-09 07:19:28 UTC) #49
Seigo Nonaka
https://codereview.chromium.org/2617443002/diff/140001/third_party/WebKit/Source/core/editing/InputMethodController.cpp File third_party/WebKit/Source/core/editing/InputMethodController.cpp (right): https://codereview.chromium.org/2617443002/diff/140001/third_party/WebKit/Source/core/editing/InputMethodController.cpp#newcode242 third_party/WebKit/Source/core/editing/InputMethodController.cpp:242: U16_BACK_N(UText, 0, deletionStart, beforeLengthInCodePoints); On 2017/02/09 07:19:27, yosin_BlinkOn_slow wrote: ...
3 years, 10 months ago (2017-02-09 07:29:22 UTC) #51
yabinh
https://codereview.chromium.org/2617443002/diff/140001/content/common/input_messages.h File content/common/input_messages.h (right): https://codereview.chromium.org/2617443002/diff/140001/content/common/input_messages.h#newcode168 content/common/input_messages.h:168: IPC_MESSAGE_ROUTED2(InputMsg_DeleteSurroundingText, On 2017/02/09 07:19:27, yosin_UTC9 wrote: > Just curiosity, ...
3 years, 10 months ago (2017-02-09 10:37:04 UTC) #54
aelias_OOO_until_Jul13
https://codereview.chromium.org/2617443002/diff/140001/content/common/input_messages.h File content/common/input_messages.h (right): https://codereview.chromium.org/2617443002/diff/140001/content/common/input_messages.h#newcode168 content/common/input_messages.h:168: IPC_MESSAGE_ROUTED2(InputMsg_DeleteSurroundingText, On 2017/02/09 at 10:37:03, yabinh wrote: > On ...
3 years, 10 months ago (2017-02-10 00:45:38 UTC) #57
yosin_UTC9
https://codereview.chromium.org/2617443002/diff/140001/third_party/WebKit/Source/core/editing/InputMethodController.cpp File third_party/WebKit/Source/core/editing/InputMethodController.cpp (right): https://codereview.chromium.org/2617443002/diff/140001/third_party/WebKit/Source/core/editing/InputMethodController.cpp#newcode218 third_party/WebKit/Source/core/editing/InputMethodController.cpp:218: std::pair<int, int> invalidDeletionLength() { On 2017/02/09 at 10:37:03, yabinh ...
3 years, 10 months ago (2017-02-10 04:54:11 UTC) #58
yosin_UTC9
https://codereview.chromium.org/2617443002/diff/160001/third_party/WebKit/Source/core/editing/InputMethodController.cpp File third_party/WebKit/Source/core/editing/InputMethodController.cpp (right): https://codereview.chromium.org/2617443002/diff/160001/third_party/WebKit/Source/core/editing/InputMethodController.cpp#newcode244 third_party/WebKit/Source/core/editing/InputMethodController.cpp:244: U16_BACK_N(character16s, 0, deletionStart, beforeLengthInCodePoints); On 2017/02/10 at 04:54:11, yosin_UTC9 ...
3 years, 10 months ago (2017-02-10 05:20:19 UTC) #59
yabinh
https://codereview.chromium.org/2617443002/diff/140001/third_party/WebKit/Source/core/editing/InputMethodController.cpp File third_party/WebKit/Source/core/editing/InputMethodController.cpp (right): https://codereview.chromium.org/2617443002/diff/140001/third_party/WebKit/Source/core/editing/InputMethodController.cpp#newcode218 third_party/WebKit/Source/core/editing/InputMethodController.cpp:218: std::pair<int, int> invalidDeletionLength() { On 2017/02/10 04:54:11, yosin_UTC9 wrote: ...
3 years, 10 months ago (2017-02-10 05:46:07 UTC) #60
yosin_UTC9
On 2017/02/10 at 05:46:07, yabinh wrote: > https://codereview.chromium.org/2617443002/diff/140001/third_party/WebKit/Source/core/editing/InputMethodController.cpp > File third_party/WebKit/Source/core/editing/InputMethodController.cpp (right): > > https://codereview.chromium.org/2617443002/diff/140001/third_party/WebKit/Source/core/editing/InputMethodController.cpp#newcode218 ...
3 years, 10 months ago (2017-02-10 06:13:48 UTC) #61
yabinh
https://codereview.chromium.org/2617443002/diff/140001/third_party/WebKit/Source/core/editing/InputMethodController.cpp File third_party/WebKit/Source/core/editing/InputMethodController.cpp (right): https://codereview.chromium.org/2617443002/diff/140001/third_party/WebKit/Source/core/editing/InputMethodController.cpp#newcode238 third_party/WebKit/Source/core/editing/InputMethodController.cpp:238: U8_BACK_N(LText, 0, deletionStart, beforeLengthInCodePoints); On 2017/02/10 04:54:11, yosin_UTC9 wrote: ...
3 years, 10 months ago (2017-02-10 07:27:26 UTC) #62
yosin_UTC9
On 2017/02/10 at 07:27:26, yabinh wrote: > https://codereview.chromium.org/2617443002/diff/140001/third_party/WebKit/Source/core/editing/InputMethodController.cpp > File third_party/WebKit/Source/core/editing/InputMethodController.cpp (right): > > https://codereview.chromium.org/2617443002/diff/140001/third_party/WebKit/Source/core/editing/InputMethodController.cpp#newcode238 ...
3 years, 10 months ago (2017-02-10 07:46:06 UTC) #63
yabinh
https://codereview.chromium.org/2617443002/diff/160001/third_party/WebKit/Source/core/editing/InputMethodController.cpp File third_party/WebKit/Source/core/editing/InputMethodController.cpp (right): https://codereview.chromium.org/2617443002/diff/160001/third_party/WebKit/Source/core/editing/InputMethodController.cpp#newcode244 third_party/WebKit/Source/core/editing/InputMethodController.cpp:244: U16_BACK_N(character16s, 0, deletionStart, beforeLengthInCodePoints); On 2017/02/10 05:20:19, yosin_UTC9 wrote: ...
3 years, 10 months ago (2017-02-10 10:49:22 UTC) #64
blink-reviews
yes, please 2017年2月10日(金) 19:49 <yabinh@chromium.org>: > > > https://codereview.chromium.org/2617443002/diff/160001/third_party/WebKit/Source/core/editing/InputMethodController.cpp > File third_party/WebKit/Source/core/editing/InputMethodController.cpp > (right): > ...
3 years, 10 months ago (2017-02-10 11:09:23 UTC) #65
chromium-reviews
yes, please 2017年2月10日(金) 19:49 <yabinh@chromium.org>: > > > https://codereview.chromium.org/2617443002/diff/160001/third_party/WebKit/Source/core/editing/InputMethodController.cpp > File third_party/WebKit/Source/core/editing/InputMethodController.cpp > (right): > ...
3 years, 10 months ago (2017-02-10 11:09:23 UTC) #66
yosin_UTC9
On 2017/02/10 at 11:09:23, chromium-reviews wrote: > yes, please > > 2017年2月10日(金) 19:49 <yabinh@chromium.org>: > ...
3 years, 10 months ago (2017-02-10 11:51:11 UTC) #67
yabinh
yosin@, PTAL, thanks! FYI, patch 9 is based on 2 CLs: https://codereview.chromium.org/2706713002/ https://codereview.chromium.org/2708523002/
3 years, 10 months ago (2017-02-20 02:42:22 UTC) #70
yosin_UTC9
https://codereview.chromium.org/2617443002/diff/200001/third_party/WebKit/Source/core/editing/InputMethodController.cpp File third_party/WebKit/Source/core/editing/InputMethodController.cpp (right): https://codereview.chromium.org/2617443002/diff/200001/third_party/WebKit/Source/core/editing/InputMethodController.cpp#newcode196 third_party/WebKit/Source/core/editing/InputMethodController.cpp:196: const UChar* uText, Do we know length of |uText|? ...
3 years, 10 months ago (2017-02-20 05:54:00 UTC) #77
yabinh
https://codereview.chromium.org/2617443002/diff/200001/third_party/WebKit/Source/core/editing/InputMethodController.cpp File third_party/WebKit/Source/core/editing/InputMethodController.cpp (right): https://codereview.chromium.org/2617443002/diff/200001/third_party/WebKit/Source/core/editing/InputMethodController.cpp#newcode962 third_party/WebKit/Source/core/editing/InputMethodController.cpp:962: calculateBeforeDeletionLengthsInCodePoints(uText, before, selectionStart); On 2017/02/20 05:53:59, yosin_UTC9 wrote: > ...
3 years, 10 months ago (2017-02-20 06:28:23 UTC) #78
yosin_UTC9
On 2017/02/20 at 06:28:23, yabinh wrote: > https://codereview.chromium.org/2617443002/diff/200001/third_party/WebKit/Source/core/editing/InputMethodController.cpp > File third_party/WebKit/Source/core/editing/InputMethodController.cpp (right): > > https://codereview.chromium.org/2617443002/diff/200001/third_party/WebKit/Source/core/editing/InputMethodController.cpp#newcode962 ...
3 years, 10 months ago (2017-02-20 06:32:02 UTC) #79
yabinh
> We need to make sure in the code rather than comment or description in ...
3 years, 10 months ago (2017-02-20 07:46:45 UTC) #82
yosin_UTC9
lgtm for core/editing
3 years, 10 months ago (2017-02-20 08:07:37 UTC) #83
yabinh
Thanks! clamy@, can you take a look at content/browser/frame_host/ and content/test/? aelias@, can you take ...
3 years, 10 months ago (2017-02-20 08:23:16 UTC) #85
clamy
Thanks! content/ lgtm.
3 years, 10 months ago (2017-02-21 13:22:00 UTC) #88
yabinh
Ping aelias@ and dcheng@ for third_party/WebKit and content/common/input_messages.h. ;)
3 years, 10 months ago (2017-02-24 08:35:19 UTC) #89
aelias_OOO_until_Jul13
third_party/WebKit/public/web/ lgtm
3 years, 10 months ago (2017-02-24 20:25:16 UTC) #90
dcheng
https://codereview.chromium.org/2617443002/diff/220001/content/browser/frame_host/render_frame_host_impl.cc File content/browser/frame_host/render_frame_host_impl.cc (right): https://codereview.chromium.org/2617443002/diff/220001/content/browser/frame_host/render_frame_host_impl.cc#newcode2644 content/browser/frame_host/render_frame_host_impl.cc:2644: void RenderFrameHostImpl::DeleteSurroundingTextInCodePoints(size_t before, I'm wondering why the caller of ...
3 years, 10 months ago (2017-02-25 07:37:04 UTC) #91
yabinh
dcheng@, PTAL. Thanks! https://codereview.chromium.org/2617443002/diff/220001/content/browser/frame_host/render_frame_host_impl.cc File content/browser/frame_host/render_frame_host_impl.cc (right): https://codereview.chromium.org/2617443002/diff/220001/content/browser/frame_host/render_frame_host_impl.cc#newcode2644 content/browser/frame_host/render_frame_host_impl.cc:2644: void RenderFrameHostImpl::DeleteSurroundingTextInCodePoints(size_t before, On 2017/02/25 07:37:03, ...
3 years, 9 months ago (2017-02-27 02:04:33 UTC) #94
dcheng
This CL lgtm, but I would like to see a long-term plan to figure out ...
3 years, 9 months ago (2017-02-27 23:31:46 UTC) #97
yabinh
On 2017/02/27 23:31:46, dcheng wrote: >Can you file a followup bug for that? Done. See ...
3 years, 9 months ago (2017-02-28 01:26:38 UTC) #98
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/2617443002/240001
3 years, 9 months ago (2017-02-28 01:27:48 UTC) #101
commit-bot: I haz the power
3 years, 9 months ago (2017-02-28 01:37:58 UTC) #104
Message was sent while issue was closed.
Committed patchset #12 (id:240001) as
https://chromium.googlesource.com/chromium/src/+/5290fd91df3f6c5e5ca054b0bd46...

Powered by Google App Engine
This is Rietveld 408576698