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

Issue 1177503003: Remove the 2-level input method system & InputMethodBridge. (Closed)

Created:
5 years, 6 months ago by Shu Chen
Modified:
5 years, 5 months ago
Reviewers:
tapted, James Su, oshima, yukawa, sky
CC:
chromium-reviews, tdanderson+views_chromium.org, sadrul, yusukes+watch_chromium.org, tfarina, jam, penghuang+watch_chromium.org, sievers+watch_chromium.org, jbauman+watch_chromium.org, nona+watch_chromium.org, darin-cc_chromium.org, shuchen+watch_chromium.org, oshima+watch_chromium.org, piman+watch_chromium.org, kalyank, danakj+watch_chromium.org, stevenjb+watch_chromium.org, davemoore+watch_chromium.org, tapted
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Remove the 2-level input method system & InputMethodBridge. This is IMF refactoring according to the design: - For @google.com: https://docs.google.com/document/d/14PQN4fbbSTlJmIk6qk7RzsuNr7O22DUTfNQ6slxKWV0 - For @chromium.org: https://docs.google.com/document/d/1sDES_kuEVUjb_FwCvKsg0Ef48edq5lAx589r0qUtG4g This cl includes some fundamental changes: 1) Removed ui/views/ime/... 2) All TextInputClient's use InputMethod::SetFocusedTextInputClient() to inform InputMethod that itself is focused. 3) Supports mocking input method in InputMethodFactory for TextfieldTest. 4) Removed views::View::GetTextInputClient() which is useless. The rest changes follow the above major changes. BUG=474828 TEST=Verified locally on Win7/Win8/Linux/CrOS/Mac. Tests passed. Committed: https://crrev.com/12f77cb7c9b7b8256df62a4423e03e539a980b3b Cr-Commit-Position: refs/heads/master@{#337157}

Patch Set 1 #

Patch Set 2 : nits & fixed test failures. #

Patch Set 3 : makes trybots green. #

Total comments: 16

Patch Set 4 : addressed comments. #

Patch Set 5 : reverted changes for MockInputMethod. #

Total comments: 24

Patch Set 6 : marked GetTextInputClient as final. #

Patch Set 7 : rebased & removed views::View::GetTextInputClient & removed GetFocusedTextInputClient. #

Total comments: 12

Patch Set 8 : fixed mac compile errors & moved DetachTextInputClient calls from Combobox/TreeView to PrefixSelect… #

Patch Set 9 : fixed test failures. #

Patch Set 10 : #

Total comments: 8

Patch Set 11 : addressed comments. #

Patch Set 12 : removed useless DummyInputMethodDelegate. #

Patch Set 13 : made CL smaller. #

Patch Set 14 : fixed compiling errors. #

Patch Set 15 : Fixes for views_unittests on Mac. #

Patch Set 16 : . #

Total comments: 16

Patch Set 17 : per comments #

Total comments: 5

Patch Set 18 : per comments. #

Patch Set 19 : #

Patch Set 20 : nit. #

Patch Set 21 : per comments #

Patch Set 22 : test green. #

Total comments: 4

Patch Set 23 : nits. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+402 lines, -1656 lines) Patch
M ash/magnifier/magnification_controller_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/options/passphrase_textfield.cc View 3 chunks +0 lines, -3 lines 0 comments Download
M chrome/browser/ui/views/find_bar_view.cc View 3 chunks +2 lines, -2 lines 0 comments Download
M chrome/browser/ui/views/omnibox/omnibox_view_views.cc View 1 2 3 4 5 6 7 8 9 10 11 12 4 chunks +3 lines, -4 lines 0 comments Download
M chrome/browser/ui/views/omnibox/omnibox_view_views_browsertest.cc View 1 2 3 4 5 6 2 chunks +4 lines, -3 lines 0 comments Download
M ui/base/ime/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -2 lines 0 comments Download
D ui/base/ime/dummy_input_method_delegate.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -30 lines 0 comments Download
D ui/base/ime/dummy_input_method_delegate.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -19 lines 0 comments Download
M ui/base/ime/input_method_factory.h View 1 chunk +1 line, -0 lines 0 comments Download
M ui/base/ime/input_method_factory.cc View 1 2 3 4 5 3 chunks +12 lines, -0 lines 0 comments Download
M ui/base/ime/ui_base_ime.gyp View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -2 lines 0 comments Download
M ui/views/cocoa/bridged_content_view.mm View 2 chunks +1 line, -1 line 0 comments Download
M ui/views/cocoa/bridged_native_widget.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 4 chunks +12 lines, -13 lines 0 comments Download
M ui/views/cocoa/bridged_native_widget.mm View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 4 chunks +14 lines, -15 lines 0 comments Download
M ui/views/cocoa/bridged_native_widget_unittest.mm View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 2 chunks +3 lines, -8 lines 0 comments Download
M ui/views/controls/combobox/combobox.h View 1 2 3 4 5 6 7 2 chunks +2 lines, -1 line 0 comments Download
M ui/views/controls/combobox/combobox.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 6 chunks +18 lines, -9 lines 0 comments Download
M ui/views/controls/combobox/combobox_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 5 chunks +11 lines, -10 lines 0 comments Download
M ui/views/controls/menu/menu_controller.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +1 line, -1 line 0 comments Download
M ui/views/controls/menu/submenu_view.h View 1 2 3 4 5 6 7 8 9 10 2 chunks +2 lines, -1 line 0 comments Download
M ui/views/controls/menu/submenu_view.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 3 chunks +5 lines, -4 lines 0 comments Download
M ui/views/controls/prefix_selector.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +1 line, -0 lines 0 comments Download
M ui/views/controls/prefix_selector_unittest.cc View 1 2 3 4 5 6 7 8 9 1 chunk +5 lines, -0 lines 0 comments Download
M ui/views/controls/textfield/textfield.h View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +0 lines, -1 line 0 comments Download
M ui/views/controls/textfield/textfield.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 6 chunks +11 lines, -8 lines 0 comments Download
M ui/views/controls/textfield/textfield_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 11 chunks +191 lines, -11 lines 0 comments Download
M ui/views/controls/tree/tree_view.h View 1 2 3 4 5 6 7 2 chunks +2 lines, -1 line 0 comments Download
M ui/views/controls/tree/tree_view.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 6 chunks +18 lines, -10 lines 0 comments Download
M ui/views/controls/tree/tree_view_unittest.cc View 1 2 3 4 5 6 7 2 chunks +1 line, -2 lines 0 comments Download
M ui/views/controls/webview/webview.h View 1 2 3 4 5 6 1 chunk +0 lines, -1 line 0 comments Download
M ui/views/controls/webview/webview.cc View 1 2 3 4 5 6 1 chunk +0 lines, -4 lines 0 comments Download
D ui/views/ime/OWNERS View 1 chunk +0 lines, -7 lines 0 comments Download
D ui/views/ime/input_method.h View 1 chunk +0 lines, -125 lines 0 comments Download
D ui/views/ime/input_method_base.h View 1 chunk +0 lines, -78 lines 0 comments Download
D ui/views/ime/input_method_base.cc View 1 chunk +0 lines, -104 lines 0 comments Download
D ui/views/ime/input_method_bridge.h View 1 chunk +0 lines, -106 lines 0 comments Download
D ui/views/ime/input_method_bridge.cc View 1 chunk +0 lines, -346 lines 0 comments Download
D ui/views/ime/input_method_bridge_unittest.cc View 1 chunk +0 lines, -43 lines 0 comments Download
D ui/views/ime/input_method_delegate.h View 1 chunk +0 lines, -31 lines 0 comments Download
D ui/views/ime/mock_input_method.h View 1 chunk +0 lines, -84 lines 0 comments Download
D ui/views/ime/mock_input_method.cc View 1 chunk +0 lines, -147 lines 0 comments Download
D ui/views/ime/null_input_method.h View 1 chunk +0 lines, -49 lines 0 comments Download
D ui/views/ime/null_input_method.cc View 1 chunk +0 lines, -58 lines 0 comments Download
M ui/views/test/widget_test.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 2 chunks +7 lines, -0 lines 0 comments Download
M ui/views/test/widget_test_aura.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +6 lines, -0 lines 0 comments Download
M ui/views/test/widget_test_mac.mm View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 2 chunks +7 lines, -0 lines 0 comments Download
M ui/views/view.h 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 +7 lines, -9 lines 0 comments Download
M ui/views/view.cc 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 +5 lines, -12 lines 0 comments Download
M ui/views/views.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 13 3 chunks +0 lines, -12 lines 0 comments Download
M ui/views/widget/desktop_aura/desktop_native_widget_aura.h View 1 2 3 4 5 6 7 8 9 10 11 12 5 chunks +1 line, -9 lines 0 comments Download
M ui/views/widget/desktop_aura/desktop_native_widget_aura.cc View 1 2 3 4 5 6 7 8 9 10 11 12 6 chunks +4 lines, -34 lines 0 comments Download
M ui/views/widget/desktop_aura/desktop_window_tree_host_win.cc View 1 2 3 4 5 6 1 chunk +0 lines, -1 line 0 comments Download
M ui/views/widget/desktop_aura/desktop_window_tree_host_x11.cc View 1 2 3 4 5 6 2 chunks +0 lines, -4 lines 0 comments Download
M ui/views/widget/desktop_aura/desktop_window_tree_host_x11_interactive_uitest.cc View 3 chunks +5 lines, -3 lines 0 comments Download
M ui/views/widget/desktop_aura/x11_desktop_handler.cc View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +0 lines, -1 line 0 comments Download
M ui/views/widget/native_widget_aura.h View 1 2 3 4 5 6 7 8 9 10 11 12 4 chunks +1 line, -8 lines 0 comments Download
M ui/views/widget/native_widget_aura.cc View 1 2 3 4 5 6 7 8 9 10 11 12 5 chunks +11 lines, -57 lines 0 comments Download
M ui/views/widget/native_widget_delegate.h View 2 chunks +0 lines, -6 lines 0 comments Download
M ui/views/widget/native_widget_mac.h View 1 2 3 4 5 6 1 chunk +1 line, -3 lines 0 comments Download
M ui/views/widget/native_widget_mac.mm View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +2 lines, -10 lines 0 comments Download
M ui/views/widget/native_widget_private.h View 1 2 3 4 5 6 7 8 9 10 2 chunks +1 line, -14 lines 0 comments Download
M ui/views/widget/widget.h View 1 2 3 4 5 6 7 8 9 10 11 12 5 chunks +1 line, -20 lines 0 comments Download
M ui/views/widget/widget.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 9 chunks +21 lines, -51 lines 0 comments Download
M ui/views/widget/widget_interactive_uitest.cc View 2 chunks +0 lines, -38 lines 0 comments Download
M ui/views/widget/widget_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 3 chunks +0 lines, -5 lines 0 comments Download
M ui/views/win/hwnd_message_handler.h View 4 chunks +0 lines, -6 lines 0 comments Download
M ui/views/win/hwnd_message_handler.cc View 1 2 3 4 5 6 2 chunks +1 line, -8 lines 0 comments Download

Messages

Total messages: 54 (13 generated)
Shu Chen
Guys, can you please help to review this cl? Thanks James/Yohei, please do the overall ...
5 years, 6 months ago (2015-06-10 14:34:59 UTC) #3
Shu Chen
Although this cl is big, it would be easier to review by this order: 1) ...
5 years, 6 months ago (2015-06-11 08:27:56 UTC) #4
yukawa
This is my initial scan and not all the files are checked. https://codereview.chromium.org/1177503003/diff/40001/ui/base/ime/mock_input_method.h File ui/base/ime/mock_input_method.h ...
5 years, 6 months ago (2015-06-11 21:48:43 UTC) #5
Shu Chen
https://codereview.chromium.org/1177503003/diff/40001/ui/base/ime/mock_input_method.h File ui/base/ime/mock_input_method.h (right): https://codereview.chromium.org/1177503003/diff/40001/ui/base/ime/mock_input_method.h#newcode60 ui/base/ime/mock_input_method.h:60: internal::InputMethodDelegate* delegate_; On 2015/06/11 21:48:42, yukawa wrote: > Can ...
5 years, 6 months ago (2015-06-12 03:34:38 UTC) #6
yukawa
https://codereview.chromium.org/1177503003/diff/40001/ui/base/ime/mock_input_method.h File ui/base/ime/mock_input_method.h (right): https://codereview.chromium.org/1177503003/diff/40001/ui/base/ime/mock_input_method.h#newcode60 ui/base/ime/mock_input_method.h:60: internal::InputMethodDelegate* delegate_; On 2015/06/12 03:34:38, Shu Chen wrote: > ...
5 years, 6 months ago (2015-06-12 05:20:46 UTC) #7
Shu Chen
https://codereview.chromium.org/1177503003/diff/40001/ui/base/ime/mock_input_method.h File ui/base/ime/mock_input_method.h (right): https://codereview.chromium.org/1177503003/diff/40001/ui/base/ime/mock_input_method.h#newcode60 ui/base/ime/mock_input_method.h:60: internal::InputMethodDelegate* delegate_; On 2015/06/12 05:20:45, yukawa wrote: > On ...
5 years, 6 months ago (2015-06-12 05:32:55 UTC) #8
James Su
https://codereview.chromium.org/1177503003/diff/80001/ui/base/ime/input_method_factory.cc File ui/base/ime/input_method_factory.cc (right): https://codereview.chromium.org/1177503003/diff/80001/ui/base/ime/input_method_factory.cc#newcode43 ui/base/ime/input_method_factory.cc:43: return make_scoped_ptr(g_input_method_for_testing); Not sure if this code is correct. ...
5 years, 6 months ago (2015-06-12 07:58:51 UTC) #9
Shu Chen
https://codereview.chromium.org/1177503003/diff/80001/ui/base/ime/input_method_factory.cc File ui/base/ime/input_method_factory.cc (right): https://codereview.chromium.org/1177503003/diff/80001/ui/base/ime/input_method_factory.cc#newcode43 ui/base/ime/input_method_factory.cc:43: return make_scoped_ptr(g_input_method_for_testing); On 2015/06/12 07:58:50, James Su wrote: > ...
5 years, 6 months ago (2015-06-12 08:51:31 UTC) #10
Shu Chen
I've removed views::View::GetTextInputClient & GetFocusedTextInputClient. Please take another look.
5 years, 6 months ago (2015-06-15 16:28:50 UTC) #11
Shu Chen
+oshima@ for ash changes. Thanks
5 years, 6 months ago (2015-06-16 02:11:59 UTC) #13
yukawa
https://codereview.chromium.org/1177503003/diff/120001/ui/views/cocoa/bridged_native_widget.mm File ui/views/cocoa/bridged_native_widget.mm (right): https://codereview.chromium.org/1177503003/diff/120001/ui/views/cocoa/bridged_native_widget.mm#newcode773 ui/views/cocoa/bridged_native_widget.mm:773: focused_now ? focused_now->GetTextInputClient() : NULL; Mac build fails with ...
5 years, 6 months ago (2015-06-16 02:45:03 UTC) #14
Shu Chen
https://codereview.chromium.org/1177503003/diff/120001/ui/views/cocoa/bridged_native_widget.mm File ui/views/cocoa/bridged_native_widget.mm (right): https://codereview.chromium.org/1177503003/diff/120001/ui/views/cocoa/bridged_native_widget.mm#newcode773 ui/views/cocoa/bridged_native_widget.mm:773: focused_now ? focused_now->GetTextInputClient() : NULL; On 2015/06/16 02:45:03, yukawa ...
5 years, 6 months ago (2015-06-16 05:15:27 UTC) #15
oshima
ash/ lgtm
5 years, 6 months ago (2015-06-16 05:22:03 UTC) #16
yukawa
https://codereview.chromium.org/1177503003/diff/120001/ui/views/controls/textfield/textfield.cc File ui/views/controls/textfield/textfield.cc (right): https://codereview.chromium.org/1177503003/diff/120001/ui/views/controls/textfield/textfield.cc#newcode295 ui/views/controls/textfield/textfield.cc:295: if (GetInputMethod()) On 2015/06/16 05:15:27, Shu Chen wrote: > ...
5 years, 6 months ago (2015-06-16 05:34:10 UTC) #17
Shu Chen
https://codereview.chromium.org/1177503003/diff/120001/ui/views/controls/textfield/textfield.cc File ui/views/controls/textfield/textfield.cc (right): https://codereview.chromium.org/1177503003/diff/120001/ui/views/controls/textfield/textfield.cc#newcode295 ui/views/controls/textfield/textfield.cc:295: if (GetInputMethod()) On 2015/06/16 05:34:10, yukawa wrote: > On ...
5 years, 6 months ago (2015-06-16 06:53:59 UTC) #18
yukawa
Chatting with Shu online and now I think we can go ahead as long as ...
5 years, 6 months ago (2015-06-16 09:13:26 UTC) #19
James Su
https://codereview.chromium.org/1177503003/diff/180001/ui/views/widget/desktop_aura/desktop_native_widget_aura.cc File ui/views/widget/desktop_aura/desktop_native_widget_aura.cc (right): https://codereview.chromium.org/1177503003/diff/180001/ui/views/widget/desktop_aura/desktop_native_widget_aura.cc#newcode380 ui/views/widget/desktop_aura/desktop_native_widget_aura.cc:380: GetInputMethod()->OnFocus(); I'm wondering why this line is inside if ...
5 years, 6 months ago (2015-06-16 09:18:34 UTC) #20
Shu Chen
https://codereview.chromium.org/1177503003/diff/180001/ui/views/controls/menu/submenu_view.h File ui/views/controls/menu/submenu_view.h (right): https://codereview.chromium.org/1177503003/diff/180001/ui/views/controls/menu/submenu_view.h#newcode55 ui/views/controls/menu/submenu_view.h:55: ui::TextInputClient* GetTextInputClient(); On 2015/06/16 09:13:26, yukawa wrote: > Can ...
5 years, 6 months ago (2015-06-17 02:27:52 UTC) #21
James Su
LGTM. On 2015/06/17 02:27:52, Shu Chen wrote: > https://codereview.chromium.org/1177503003/diff/180001/ui/views/controls/menu/submenu_view.h > File ui/views/controls/menu/submenu_view.h (right): > > ...
5 years, 6 months ago (2015-06-18 01:57:14 UTC) #22
Shu Chen
Pinging... sky@/yukawa@/sadrul@, can you please take a look? Thanks
5 years, 6 months ago (2015-06-24 00:32:59 UTC) #23
yukawa
lgtm
5 years, 6 months ago (2015-06-24 01:00:51 UTC) #24
sadrul
Please try splitting this CL into smaller CLs. Large CLs are difficult to review, and ...
5 years, 6 months ago (2015-06-25 05:19:38 UTC) #25
Shu Chen
I've made the CL smaller by reverting the below changes: - Removed useless TextInputClient::GetAttachedWindow(). - ...
5 years, 6 months ago (2015-06-26 02:49:20 UTC) #26
Shu Chen
+tapted@ to review the Mac related stuff. Also merging Cl https://codereview.chromium.org/1207973002 to this CL. Thanks ...
5 years, 6 months ago (2015-06-26 03:55:42 UTC) #28
sky
https://codereview.chromium.org/1177503003/diff/300001/chrome/browser/ui/views/find_bar_view.cc File chrome/browser/ui/views/find_bar_view.cc (right): https://codereview.chromium.org/1177503003/diff/300001/chrome/browser/ui/views/find_bar_view.cc#newcode237 chrome/browser/ui/views/find_bar_view.cc:237: GetWidget()->GetInputMethod()->ShowImeIfNeeded(); Shouldn't focusing find_text_ take care of showing ime? ...
5 years, 5 months ago (2015-06-29 02:17:41 UTC) #29
Shu Chen
Thanks for your review, Scott. Can you please take another look? https://codereview.chromium.org/1177503003/diff/300001/chrome/browser/ui/views/find_bar_view.cc File chrome/browser/ui/views/find_bar_view.cc (right): ...
5 years, 5 months ago (2015-06-29 02:56:35 UTC) #30
tapted
https://codereview.chromium.org/1177503003/diff/320001/ui/views/cocoa/bridged_native_widget.mm File ui/views/cocoa/bridged_native_widget.mm (right): https://codereview.chromium.org/1177503003/diff/320001/ui/views/cocoa/bridged_native_widget.mm#newcode711 ui/views/cocoa/bridged_native_widget.mm:711: input_method_->OnFocus(); Can you add a comment about this line? ...
5 years, 5 months ago (2015-06-29 04:57:21 UTC) #31
Shu Chen
https://codereview.chromium.org/1177503003/diff/320001/ui/views/cocoa/bridged_native_widget.mm File ui/views/cocoa/bridged_native_widget.mm (right): https://codereview.chromium.org/1177503003/diff/320001/ui/views/cocoa/bridged_native_widget.mm#newcode711 ui/views/cocoa/bridged_native_widget.mm:711: input_method_->OnFocus(); On 2015/06/29 04:57:21, tapted wrote: > Can you ...
5 years, 5 months ago (2015-06-29 06:05:57 UTC) #32
tapted
ui/views/cocoa/* and native_widget_mac lgtm Thanks! https://codereview.chromium.org/1177503003/diff/320001/ui/views/cocoa/bridged_native_widget.mm File ui/views/cocoa/bridged_native_widget.mm (right): https://codereview.chromium.org/1177503003/diff/320001/ui/views/cocoa/bridged_native_widget.mm#newcode711 ui/views/cocoa/bridged_native_widget.mm:711: input_method_->OnFocus(); On 2015/06/29 06:05:57, ...
5 years, 5 months ago (2015-06-29 06:34:48 UTC) #33
sky
https://codereview.chromium.org/1177503003/diff/300001/ui/views/controls/combobox/combobox.cc File ui/views/controls/combobox/combobox.cc (right): https://codereview.chromium.org/1177503003/diff/300001/ui/views/controls/combobox/combobox.cc#newcode275 ui/views/controls/combobox/combobox.cc:275: model_->RemoveObserver(this); On 2015/06/29 02:56:34, Shu Chen wrote: > On ...
5 years, 5 months ago (2015-06-29 17:03:50 UTC) #34
Shu Chen
https://codereview.chromium.org/1177503003/diff/300001/ui/views/controls/combobox/combobox.cc File ui/views/controls/combobox/combobox.cc (right): https://codereview.chromium.org/1177503003/diff/300001/ui/views/controls/combobox/combobox.cc#newcode275 ui/views/controls/combobox/combobox.cc:275: model_->RemoveObserver(this); On 2015/06/29 17:03:49, sky wrote: > On 2015/06/29 ...
5 years, 5 months ago (2015-06-30 00:54:06 UTC) #35
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1177503003/400001
5 years, 5 months ago (2015-06-30 08:44:17 UTC) #38
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: cast_shell_linux on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/cast_shell_linux/builds/25608)
5 years, 5 months ago (2015-06-30 09:09:32 UTC) #40
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1177503003/420001
5 years, 5 months ago (2015-06-30 09:50:40 UTC) #43
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
5 years, 5 months ago (2015-06-30 10:50:54 UTC) #45
sky
https://codereview.chromium.org/1177503003/diff/300001/chrome/browser/ui/views/find_bar_view.cc File chrome/browser/ui/views/find_bar_view.cc (right): https://codereview.chromium.org/1177503003/diff/300001/chrome/browser/ui/views/find_bar_view.cc#newcode237 chrome/browser/ui/views/find_bar_view.cc:237: GetWidget()->GetInputMethod()->ShowImeIfNeeded(); On 2015/06/29 02:56:34, Shu Chen wrote: > On ...
5 years, 5 months ago (2015-06-30 16:32:31 UTC) #46
Shu Chen
Moving sadrul@ to cc as no specific changes require his attention. https://codereview.chromium.org/1177503003/diff/300001/chrome/browser/ui/views/find_bar_view.cc File chrome/browser/ui/views/find_bar_view.cc (right): ...
5 years, 5 months ago (2015-07-01 02:38:57 UTC) #48
sky
LGTM
5 years, 5 months ago (2015-07-01 16:03:56 UTC) #49
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1177503003/440001
5 years, 5 months ago (2015-07-02 01:11:24 UTC) #52
commit-bot: I haz the power
Committed patchset #23 (id:440001)
5 years, 5 months ago (2015-07-02 02:11:29 UTC) #53
commit-bot: I haz the power
5 years, 5 months ago (2015-07-02 02:12:17 UTC) #54
Message was sent while issue was closed.
Patchset 23 (id:??) landed as
https://crrev.com/12f77cb7c9b7b8256df62a4423e03e539a980b3b
Cr-Commit-Position: refs/heads/master@{#337157}

Powered by Google App Engine
This is Rietveld 408576698