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

Issue 11418295: Use WebCore:DateTimeChooser for date/time form types instead of considering them text fields. (Closed)

Created:
8 years ago by Miguel Garcia
Modified:
8 years ago
CC:
chromium-reviews, joi+watch-content_chromium.org, darin-cc_chromium.org, jam, DO NOT USE (jschuh), darin (slow to review), Avi (use Gerrit)
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Visibility:
Public.

Description

Use WebCore:DateTimeChooser for date/time form types instead of considering them text fields. BUG=159381 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=173655

Patch Set 1 #

Total comments: 21

Patch Set 2 : Use new webKit enum instead of string comparissons #

Total comments: 27

Patch Set 3 : #

Total comments: 2

Patch Set 4 : #

Patch Set 5 : Rebased version #

Patch Set 6 : Remove test that was testing removed functionality #

Patch Set 7 : Rebaed to include dependent CL #

Total comments: 24

Patch Set 8 : #

Total comments: 2

Patch Set 9 : Rebased Version #

Patch Set 10 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+234 lines, -83 lines) Patch
M content/browser/renderer_host/ime_adapter_android.h View 1 2 2 chunks +4 lines, -2 lines 0 comments Download
M content/browser/renderer_host/ime_adapter_android.cc View 1 2 3 4 5 6 7 2 chunks +7 lines, -4 lines 0 comments Download
M content/browser/renderer_host/render_widget_host_view_android.cc View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -0 lines 0 comments Download
M content/common/view_messages.h View 1 2 3 4 5 6 7 8 2 chunks +6 lines, -3 lines 0 comments Download
M content/content_renderer.gypi View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -0 lines 0 comments Download
M content/public/android/java/src/org/chromium/content/browser/DateTimePickerDialog.java View 1 2 3 4 5 6 7 1 chunk +2 lines, -2 lines 0 comments Download
M content/public/android/java/src/org/chromium/content/browser/ImeAdapter.java View 1 2 3 4 5 6 7 8 9 chunks +43 lines, -31 lines 0 comments Download
M content/public/android/java/src/org/chromium/content/browser/InputDialogContainer.java View 1 2 3 4 5 6 5 chunks +7 lines, -12 lines 0 comments Download
M content/public/android/java/src/org/chromium/content/browser/MonthPickerDialog.java View 1 2 3 4 5 6 7 1 chunk +2 lines, -2 lines 0 comments Download
M content/renderer/render_view_browsertest.cc View 1 2 3 4 5 6 7 8 1 chunk +0 lines, -14 lines 0 comments Download
M content/renderer/render_view_impl.h View 1 2 3 4 5 6 7 8 7 chunks +11 lines, -2 lines 0 comments Download
M content/renderer/render_view_impl.cc View 1 2 3 4 5 6 7 8 6 chunks +12 lines, -11 lines 0 comments Download
M content/renderer/render_widget.cc View 1 2 3 4 5 6 7 8 9 1 chunk +13 lines, -0 lines 0 comments Download
A content/renderer/renderer_date_time_picker.h View 1 2 3 4 5 6 7 1 chunk +45 lines, -0 lines 0 comments Download
A content/renderer/renderer_date_time_picker.cc View 1 2 1 chunk +78 lines, -0 lines 0 comments Download

Messages

Total messages: 22 (0 generated)
Miguel Garcia
This cl is built on top of https://codereview.chromium.org/11421173/ but I thought I'd send an early ...
8 years ago (2012-12-03 19:44:41 UTC) #1
bulach
thanks! just some drive-by comments: https://codereview.chromium.org/11418295/diff/1/content/renderer/render_widget.cc File content/renderer/render_widget.cc (right): https://codereview.chromium.org/11418295/diff/1/content/renderer/render_widget.cc#newcode1726 content/renderer/render_widget.cc:1726: static bool IsDialogType(ui::TextInputType type) ...
8 years ago (2012-12-03 20:23:02 UTC) #2
Miguel Garcia
Thanks for the review! https://codereview.chromium.org/11418295/diff/1/content/renderer/render_widget.cc File content/renderer/render_widget.cc (right): https://codereview.chromium.org/11418295/diff/1/content/renderer/render_widget.cc#newcode1726 content/renderer/render_widget.cc:1726: static bool IsDialogType(ui::TextInputType type) { ...
8 years ago (2012-12-04 10:40:43 UTC) #3
Miguel Garcia
https://codereview.chromium.org/11418295/diff/1/content/renderer/renderer_date_time_picker_impl.cc File content/renderer/renderer_date_time_picker_impl.cc (right): https://codereview.chromium.org/11418295/diff/1/content/renderer/renderer_date_time_picker_impl.cc#newcode70 content/renderer/renderer_date_time_picker_impl.cc:70: static const WebString date = "date"; yay! The WebKit ...
8 years ago (2012-12-04 11:20:13 UTC) #4
Peter Beverloo
Hi Miguel, thanks for the patch! I've left comments inline. https://codereview.chromium.org/11418295/diff/7001/content/browser/renderer_host/ime_adapter_android.cc File content/browser/renderer_host/ime_adapter_android.cc (right): https://codereview.chromium.org/11418295/diff/7001/content/browser/renderer_host/ime_adapter_android.cc#newcode68 ...
8 years ago (2012-12-05 11:57:03 UTC) #5
Miguel Garcia
https://codereview.chromium.org/11418295/diff/7001/content/browser/renderer_host/ime_adapter_android.cc File content/browser/renderer_host/ime_adapter_android.cc (right): https://codereview.chromium.org/11418295/diff/7001/content/browser/renderer_host/ime_adapter_android.cc#newcode68 content/browser/renderer_host/ime_adapter_android.cc:68: // possibilities. As the entry point is now different ...
8 years ago (2012-12-05 16:23:16 UTC) #6
Miguel Garcia
It did not feel right to reuse the old IPCs for this so I added ...
8 years ago (2012-12-05 16:29:03 UTC) #7
Avi (use Gerrit)
While this looks plausible, I'm not an Android guy and have no idea how this ...
8 years ago (2012-12-05 16:37:00 UTC) #8
Miguel Garcia
Thanks Avi, Marcus will be approving all the android specific pieces (he is owner on ...
8 years ago (2012-12-05 17:02:42 UTC) #9
Avi (use Gerrit)
content_renderer.gypi lgtm
8 years ago (2012-12-05 17:52:20 UTC) #10
jschuh
ipc lgtm
8 years ago (2012-12-05 22:54:34 UTC) #11
tkent
On 2012/12/05 16:29:03, Miguel Garcia wrote: > Kent, Darin I noticed that most of the ...
8 years ago (2012-12-06 07:26:43 UTC) #12
Miguel Garcia
Thanks Kent, I will have a look at that post M25 probably. On 2012/12/06 07:26:43, ...
8 years ago (2012-12-06 14:01:04 UTC) #13
bulach
not an owner everywhere, but a few comments and suggestions below. sorry about the delay! ...
8 years ago (2012-12-07 18:10:13 UTC) #14
Miguel Garcia
Thanks a lot for the review Marcus? I think between you and Avi, everything is ...
8 years ago (2012-12-07 19:04:34 UTC) #15
Miguel Garcia
Jay, do you think you can have a look at this? Marcus is OOO for ...
8 years ago (2012-12-15 13:47:25 UTC) #16
Jay Civelli
lgtm https://codereview.chromium.org/11418295/diff/37003/content/renderer/render_widget.cc File content/renderer/render_widget.cc (right): https://codereview.chromium.org/11418295/diff/37003/content/renderer/render_widget.cc#newcode1743 content/renderer/render_widget.cc:1743: return; // not considered as a text input ...
8 years ago (2012-12-17 17:01:07 UTC) #17
Miguel Garcia
https://codereview.chromium.org/11418295/diff/37003/content/renderer/render_widget.cc File content/renderer/render_widget.cc (right): https://codereview.chromium.org/11418295/diff/37003/content/renderer/render_widget.cc#newcode1743 content/renderer/render_widget.cc:1743: return; // not considered as a text input field ...
8 years ago (2012-12-17 22:13:55 UTC) #18
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/miguelg@chromium.org/11418295/53016
8 years ago (2012-12-17 22:24:05 UTC) #19
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/miguelg@chromium.org/11418295/53016
8 years ago (2012-12-18 00:58:50 UTC) #20
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/miguelg@chromium.org/11418295/53016
8 years ago (2012-12-18 01:50:02 UTC) #21
commit-bot: I haz the power
8 years ago (2012-12-18 06:55:29 UTC) #22
Message was sent while issue was closed.
Change committed as 173655

Powered by Google App Engine
This is Rietveld 408576698