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

Issue 17112021: New method: InputMethod::IsCandidatePopupOpen() (Closed)

Created:
7 years, 6 months ago by Yuki
Modified:
7 years, 6 months ago
CC:
chromium-reviews, nona+watch_chromium.org, tfarina, James Su, penghuang+watch_chromium.org, yusukes+watch_chromium.org, yukawa, kochi, yoichio
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Visibility:
Public.

Description

New method: InputMethod::IsCandidatePopupOpen() Supports a new method {ui,views}::InputMethod::IsCandidatePopupOpen(), which returns true if a candidate window is open. BUG=245578 TEST=Test manually. Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=207858

Patch Set 1 #

Total comments: 1

Patch Set 2 : Removed test code #

Total comments: 4

Patch Set 3 : Synced. #

Patch Set 4 : Renamed from IsPopupOpen() to IsCandidatePopupOpen(). #

Total comments: 1

Patch Set 5 : Removed TSF support. #

Patch Set 6 : Synced. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+116 lines, -1 line) Patch
M ui/base/ime/dummy_input_method.h View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M ui/base/ime/dummy_input_method.cc View 1 2 3 1 chunk +4 lines, -0 lines 0 comments Download
M ui/base/ime/fake_input_method.h View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M ui/base/ime/fake_input_method.cc View 1 2 3 1 chunk +4 lines, -0 lines 0 comments Download
M ui/base/ime/input_method.h View 1 2 3 1 chunk +5 lines, -0 lines 0 comments Download
M ui/base/ime/input_method_ibus.h View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M ui/base/ime/input_method_ibus.cc View 1 2 3 1 chunk +5 lines, -0 lines 0 comments Download
M ui/base/ime/input_method_imm32.h View 1 2 3 3 chunks +8 lines, -0 lines 0 comments Download
M ui/base/ime/input_method_imm32.cc View 1 2 3 4 chunks +28 lines, -1 line 0 comments Download
M ui/base/ime/input_method_tsf.h View 1 2 3 4 1 chunk +1 line, -0 lines 0 comments Download
M ui/base/ime/input_method_tsf.cc View 1 2 3 4 1 chunk +5 lines, -0 lines 0 comments Download
M ui/base/ime/mock_input_method.h View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M ui/base/ime/mock_input_method.cc View 1 2 3 1 chunk +4 lines, -0 lines 0 comments Download
M ui/views/ime/input_method.h View 1 2 3 1 chunk +5 lines, -0 lines 0 comments Download
M ui/views/ime/input_method_bridge.h View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M ui/views/ime/input_method_bridge.cc View 1 2 3 1 chunk +4 lines, -0 lines 0 comments Download
M ui/views/ime/input_method_win.h View 1 2 3 3 chunks +6 lines, -0 lines 0 comments Download
M ui/views/ime/input_method_win.cc View 1 2 3 4 chunks +26 lines, -0 lines 0 comments Download
M ui/views/ime/mock_input_method.h View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M ui/views/ime/mock_input_method.cc View 1 2 3 1 chunk +4 lines, -0 lines 0 comments Download
M ui/views/win/hwnd_message_handler.h View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 16 (0 generated)
Yuki
Could you review this CL? Cheers, Yuki Shiino
7 years, 6 months ago (2013-06-19 09:00:57 UTC) #1
Seigo Nonaka
https://codereview.chromium.org/17112021/diff/5001/ui/base/ime/input_method.h File ui/base/ime/input_method.h (right): https://codereview.chromium.org/17112021/diff/5001/ui/base/ime/input_method.h#newcode153 ui/base/ime/input_method.h:153: virtual bool IsPopupOpen() const = 0; IsPopupOpen seems not ...
7 years, 6 months ago (2013-06-19 09:15:51 UTC) #2
Yohei Yukawa
Just FYI. https://codereview.chromium.org/17112021/diff/1/ui/base/ime/input_method_tsf.cc File ui/base/ime/input_method_tsf.cc (right): https://codereview.chromium.org/17112021/diff/1/ui/base/ime/input_method_tsf.cc#newcode56 ui/base/ime/input_method_tsf.cc:56: case WM_IME_NOTIFY: I guess WM_IME_NOTIFY is not ...
7 years, 6 months ago (2013-06-19 09:23:07 UTC) #3
Yuki
https://codereview.chromium.org/17112021/diff/5001/ui/base/ime/input_method.h File ui/base/ime/input_method.h (right): https://codereview.chromium.org/17112021/diff/5001/ui/base/ime/input_method.h#newcode153 ui/base/ime/input_method.h:153: virtual bool IsPopupOpen() const = 0; On 2013/06/19 09:15:51, ...
7 years, 6 months ago (2013-06-19 09:35:54 UTC) #4
Seigo Nonaka
On 2013/06/19 09:35:54, Yuki wrote: > https://codereview.chromium.org/17112021/diff/5001/ui/base/ime/input_method.h > File ui/base/ime/input_method.h (right): > > https://codereview.chromium.org/17112021/diff/5001/ui/base/ime/input_method.h#newcode153 > ...
7 years, 6 months ago (2013-06-20 05:29:10 UTC) #5
Yuki
Thanks for the review comment. As we discussed offline, I renamed the method name from ...
7 years, 6 months ago (2013-06-20 06:36:49 UTC) #6
Seigo Nonaka
lgtm
7 years, 6 months ago (2013-06-20 07:38:54 UTC) #7
Yuki
sky: Could you review this CL as an owner of ui/views/win/hwnd_message_handler.h ? I'd like to ...
7 years, 6 months ago (2013-06-20 07:43:05 UTC) #8
sky
LGTM
7 years, 6 months ago (2013-06-20 17:35:36 UTC) #9
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/yukishiino@chromium.org/17112021/18001
7 years, 6 months ago (2013-06-21 02:57:36 UTC) #10
Yohei Yukawa
https://codereview.chromium.org/17112021/diff/18001/ui/base/ime/input_method_tsf.cc File ui/base/ime/input_method_tsf.cc (right): https://codereview.chromium.org/17112021/diff/18001/ui/base/ime/input_method_tsf.cc#newcode65 ui/base/ime/input_method_tsf.cc:65: case WM_IME_NOTIFY: Wait. Please do not handle WM_IME_NOTIFY when ...
7 years, 6 months ago (2013-06-21 06:45:46 UTC) #11
Yuki
On 2013/06/21 06:45:46, Yohei Yukawa wrote: > https://codereview.chromium.org/17112021/diff/18001/ui/base/ime/input_method_tsf.cc > File ui/base/ime/input_method_tsf.cc (right): > > https://codereview.chromium.org/17112021/diff/18001/ui/base/ime/input_method_tsf.cc#newcode65 ...
7 years, 6 months ago (2013-06-21 06:55:02 UTC) #12
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/yukishiino@chromium.org/17112021/61001
7 years, 6 months ago (2013-06-21 06:56:32 UTC) #13
commit-bot: I haz the power
Retried try job too often on linux_rel for step(s) browser_tests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=linux_rel&number=141436
7 years, 6 months ago (2013-06-21 14:05:28 UTC) #14
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/yukishiino@chromium.org/17112021/104001
7 years, 6 months ago (2013-06-21 14:22:03 UTC) #15
commit-bot: I haz the power
7 years, 6 months ago (2013-06-21 16:40:02 UTC) #16
Message was sent while issue was closed.
Change committed as 207858

Powered by Google App Engine
This is Rietveld 408576698