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

Issue 10024059: DataList UI (Chromium part) (Closed)

Created:
8 years, 8 months ago by keishi
Modified:
8 years, 8 months ago
Reviewers:
csharp, Ilya Sherman
CC:
chromium-reviews, GeorgeY, dhollowa+watch_chromium.org, darin-cc_chromium.org, dyu1, brettw-cc_chromium.org, Ilya Sherman
Visibility:
Public.

Description

DataList UI (Chromium part) WebKit part is here http://codereview.chromium.org/10037002/ Example page for <datalist> https://tinker.io/22681/191 BUG= TEST= Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=132561

Patch Set 1 #

Total comments: 34

Patch Set 2 : fixed #

Total comments: 30

Patch Set 3 : Fixed #

Total comments: 8

Patch Set 4 : Patch #

Total comments: 3

Patch Set 5 : Updated for WebKit side changes #

Patch Set 6 : Fixed #

Patch Set 7 : Added type ahead for datalist #

Total comments: 10

Patch Set 8 : Fixed nits and tests #

Unified diffs Side-by-side diffs Delta from patch set Stats (+197 lines, -123 lines) Patch
M chrome/browser/autofill/autofill_external_delegate.cc View 1 2 3 4 5 chunks +7 lines, -14 lines 0 comments Download
M chrome/browser/autofill/autofill_manager.cc View 1 2 3 4 2 chunks +3 lines, -1 line 0 comments Download
M chrome/browser/autofill/autofill_manager_unittest.cc View 1 2 3 4 5 6 7 2 chunks +3 lines, -1 line 0 comments Download
M chrome/renderer/autofill/autofill_agent.h View 1 2 4 chunks +10 lines, -9 lines 0 comments Download
M chrome/renderer/autofill/autofill_agent.cc View 1 2 3 4 5 6 7 20 chunks +168 lines, -96 lines 0 comments Download
M chrome/renderer/autofill/autofill_browsertest.cc View 1 2 3 4 5 6 7 2 chunks +2 lines, -0 lines 0 comments Download
M chrome/renderer/autofill/password_autofill_manager.cc View 1 2 3 4 2 chunks +4 lines, -2 lines 0 comments Download

Messages

Total messages: 15 (0 generated)
keishi
Hi, I am trying to implement a UI for the <datalist> on a text field. ...
8 years, 8 months ago (2012-04-10 12:50:37 UTC) #1
keishi
The webkit part of the patch is here http://codereview.chromium.org/10037002/
8 years, 8 months ago (2012-04-10 12:51:33 UTC) #2
Ilya Sherman
On 2012/04/10 12:50:37, keishi1 wrote: > Hi, > > I am trying to implement a ...
8 years, 8 months ago (2012-04-11 00:18:03 UTC) #3
keishi
> Generally, this seems ok. My primary concern is that we are currently > implementing ...
8 years, 8 months ago (2012-04-11 11:48:08 UTC) #4
Ilya Sherman
https://chromiumcodereview.appspot.com/10024059/diff/6002/chrome/browser/autofill/autofill_external_delegate.cc File chrome/browser/autofill/autofill_external_delegate.cc (right): https://chromiumcodereview.appspot.com/10024059/diff/6002/chrome/browser/autofill/autofill_external_delegate.cc#newcode16 chrome/browser/autofill/autofill_external_delegate.cc:16: #include "third_party/WebKit/Source/WebKit/chromium/public/WebAutofillClient.h" nit: This should come before the "ui/..." ...
8 years, 8 months ago (2012-04-11 19:09:58 UTC) #5
keishi
http://codereview.chromium.org/10024059/diff/6002/chrome/browser/autofill/autofill_external_delegate.cc File chrome/browser/autofill/autofill_external_delegate.cc (right): http://codereview.chromium.org/10024059/diff/6002/chrome/browser/autofill/autofill_external_delegate.cc#newcode16 chrome/browser/autofill/autofill_external_delegate.cc:16: #include "third_party/WebKit/Source/WebKit/chromium/public/WebAutofillClient.h" On 2012/04/11 19:09:58, Ilya Sherman wrote: > ...
8 years, 8 months ago (2012-04-12 14:07:10 UTC) #6
Ilya Sherman
https://chromiumcodereview.appspot.com/10024059/diff/12001/chrome/renderer/autofill/autofill_agent.cc File chrome/renderer/autofill/autofill_agent.cc (right): https://chromiumcodereview.appspot.com/10024059/diff/12001/chrome/renderer/autofill/autofill_agent.cc#newcode299 chrome/renderer/autofill/autofill_agent.cc:299: return; nit: It looks like |web_view| is no longer ...
8 years, 8 months ago (2012-04-12 23:38:10 UTC) #7
keishi
http://codereview.chromium.org/10024059/diff/12001/chrome/renderer/autofill/autofill_agent.cc File chrome/renderer/autofill/autofill_agent.cc (right): http://codereview.chromium.org/10024059/diff/12001/chrome/renderer/autofill/autofill_agent.cc#newcode299 chrome/renderer/autofill/autofill_agent.cc:299: return; On 2012/04/12 23:38:10, Ilya Sherman wrote: > nit: ...
8 years, 8 months ago (2012-04-13 08:01:18 UTC) #8
Ilya Sherman
http://codereview.chromium.org/10024059/diff/12004/chrome/renderer/autofill/autofill_agent.cc File chrome/renderer/autofill/autofill_agent.cc (right): http://codereview.chromium.org/10024059/diff/12004/chrome/renderer/autofill/autofill_agent.cc#newcode329 chrome/renderer/autofill/autofill_agent.cc:329: } If you keep the |has_warning_item| logic, these if-stmts ...
8 years, 8 months ago (2012-04-13 21:39:47 UTC) #9
keishi
http://codereview.chromium.org/10024059/diff/12004/chrome/renderer/autofill/autofill_agent.cc File chrome/renderer/autofill/autofill_agent.cc (right): http://codereview.chromium.org/10024059/diff/12004/chrome/renderer/autofill/autofill_agent.cc#newcode332 chrome/renderer/autofill/autofill_agent.cc:332: if (!display_warning_if_disabled_ && has_warning_item) { On 2012/04/13 21:39:47, Ilya ...
8 years, 8 months ago (2012-04-16 11:14:36 UTC) #10
keishi
By the way the WebKit patches have landed. http://trac.webkit.org/changeset/114223 http://trac.webkit.org/changeset/114108
8 years, 8 months ago (2012-04-16 11:57:09 UTC) #11
Ilya Sherman
LGTM with a last few nits. Thanks! :) http://codereview.chromium.org/10024059/diff/33001/chrome/browser/autofill/autofill_manager_unittest.cc File chrome/browser/autofill/autofill_manager_unittest.cc (right): http://codereview.chromium.org/10024059/diff/33001/chrome/browser/autofill/autofill_manager_unittest.cc#newcode915 chrome/browser/autofill/autofill_manager_unittest.cc:915: int ...
8 years, 8 months ago (2012-04-16 21:45:49 UTC) #12
keishi
Thanks for the quick reviews! http://codereview.chromium.org/10024059/diff/33001/chrome/browser/autofill/autofill_manager_unittest.cc File chrome/browser/autofill/autofill_manager_unittest.cc (right): http://codereview.chromium.org/10024059/diff/33001/chrome/browser/autofill/autofill_manager_unittest.cc#newcode915 chrome/browser/autofill/autofill_manager_unittest.cc:915: int expected_unique_ids[] = {WebKit::WarningMessageMenuItemID}; ...
8 years, 8 months ago (2012-04-17 09:15:10 UTC) #13
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/keishi@chromium.org/10024059/36005
8 years, 8 months ago (2012-04-17 09:15:41 UTC) #14
commit-bot: I haz the power
8 years, 8 months ago (2012-04-17 10:47:51 UTC) #15
Change committed as 132561

Powered by Google App Engine
This is Rietveld 408576698