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

Issue 8353025: External autofill delegates. (Closed)

Created:
9 years, 2 months ago by John Grabowski
Modified:
9 years, 1 month ago
Reviewers:
jam, Ilya Sherman, dhollowa
CC:
chromium-reviews, GeorgeY, Avi (use Gerrit), creis+watch_chromium.org, ajwong+watch_chromium.org, jam, dpranke-watch+content_chromium.org, joi+watch-content_chromium.org, darin-cc_chromium.org, dyu1, brettw-cc_chromium.org, csharp
Visibility:
Public.

Description

External autofill delegates. BUG= TEST= Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=107839

Patch Set 1 #

Patch Set 2 : initial set #

Patch Set 3 : Carnitasify #

Total comments: 21

Patch Set 4 : feedback #

Total comments: 12

Patch Set 5 : latest feedback #

Patch Set 6 : add final TODOs #

Patch Set 7 : rebase against TOT #

Total comments: 1
Unified diffs Side-by-side diffs Delta from patch set Stats (+322 lines, -3 lines) Patch
M chrome/browser/autocomplete_history_manager.h View 1 2 3 5 chunks +18 lines, -0 lines 0 comments Download
M chrome/browser/autocomplete_history_manager.cc View 3 chunks +12 lines, -1 line 0 comments Download
M chrome/browser/autocomplete_history_manager_unittest.cc View 1 2 3 4 5 6 2 chunks +53 lines, -0 lines 0 comments Download
A chrome/browser/autofill/autofill_external_delegate.h View 1 2 3 4 5 1 chunk +64 lines, -0 lines 0 comments Download
A chrome/browser/autofill/autofill_external_delegate.cc View 1 2 3 1 chunk +37 lines, -0 lines 0 comments Download
M chrome/browser/autofill/autofill_manager.h View 1 2 3 4 5 6 5 chunks +27 lines, -0 lines 0 comments Download
M chrome/browser/autofill/autofill_manager.cc View 1 2 3 4 5 6 4 chunks +8 lines, -2 lines 0 comments Download
M chrome/browser/autofill/autofill_manager_unittest.cc View 1 2 3 4 5 6 5 chunks +69 lines, -0 lines 0 comments Download
M chrome/browser/ui/tab_contents/tab_contents_wrapper.h View 1 2 3 4 5 6 2 chunks +2 lines, -0 lines 0 comments Download
M chrome/browser/ui/tab_contents/tab_contents_wrapper.cc View 1 2 3 4 5 6 2 chunks +10 lines, -0 lines 0 comments Download
M chrome/chrome_browser.gypi View 1 2 3 4 5 6 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/common/autofill_messages.h View 1 2 3 4 5 6 1 chunk +4 lines, -0 lines 0 comments Download
M chrome/common/chrome_switches.h View 1 2 3 4 5 6 1 chunk +1 line, -0 lines 0 comments Download
M chrome/common/chrome_switches.cc View 1 2 3 4 5 6 1 chunk +3 lines, -0 lines 0 comments Download
M chrome/renderer/autofill/autofill_agent.h View 1 2 3 4 5 6 1 chunk +3 lines, -0 lines 0 comments Download
M chrome/renderer/autofill/autofill_agent.cc View 1 2 3 4 5 6 2 chunks +8 lines, -0 lines 0 comments Download
M content/content_common.gypi View 1 2 3 4 5 6 1 chunk +1 line, -0 lines 1 comment Download

Messages

Total messages: 16 (0 generated)
Ilya Sherman
Is this ready for review, or are you planning to make some further changes first?
9 years, 2 months ago (2011-10-20 22:55:03 UTC) #1
John Grabowski
Not ready for review Adding unit tests jrg On Thu, Oct 20, 2011 at 3:55 ...
9 years, 2 months ago (2011-10-20 22:55:44 UTC) #2
John Grabowski
Please review.
9 years, 2 months ago (2011-10-26 01:38:41 UTC) #3
Ilya Sherman
http://codereview.chromium.org/8353025/diff/6001/chrome/browser/autocomplete_history_manager.h File chrome/browser/autocomplete_history_manager.h (right): http://codereview.chromium.org/8353025/diff/6001/chrome/browser/autocomplete_history_manager.h#newcode60 chrome/browser/autocomplete_history_manager.h:60: FRIEND_TEST(AutofillManagerTest, TestTabContents); nit: These should probably be FRIEND_TEST_ALL_PREFIXES http://codereview.chromium.org/8353025/diff/6001/chrome/browser/autocomplete_history_manager_unittest.cc ...
9 years, 1 month ago (2011-10-26 11:09:57 UTC) #4
dhollowa
http://codereview.chromium.org/8353025/diff/6001/chrome/browser/autocomplete_history_manager_unittest.cc File chrome/browser/autocomplete_history_manager_unittest.cc (right): http://codereview.chromium.org/8353025/diff/6001/chrome/browser/autocomplete_history_manager_unittest.cc#newcode146 chrome/browser/autocomplete_history_manager_unittest.cc:146: MOCK_METHOD5(OnSuggestionsReturned, void( nit: indent seems off here. What about ...
9 years, 1 month ago (2011-10-26 16:14:22 UTC) #5
John Grabowski
Feedback applied except where noted. Thx for the scrutiny. http://codereview.chromium.org/8353025/diff/6001/chrome/browser/autofill/autofill_manager_unittest.cc File chrome/browser/autofill/autofill_manager_unittest.cc (right): http://codereview.chromium.org/8353025/diff/6001/chrome/browser/autofill/autofill_manager_unittest.cc#newcode2878 chrome/browser/autofill/autofill_manager_unittest.cc:2878: ...
9 years, 1 month ago (2011-10-27 03:05:59 UTC) #6
Ilya Sherman
http://codereview.chromium.org/8353025/diff/6001/chrome/browser/autofill/autofill_manager_unittest.cc File chrome/browser/autofill/autofill_manager_unittest.cc (right): http://codereview.chromium.org/8353025/diff/6001/chrome/browser/autofill/autofill_manager_unittest.cc#newcode2878 chrome/browser/autofill/autofill_manager_unittest.cc:2878: autofill_manager_->SetExternalDelegate(NULL); On 2011/10/27 03:05:59, John Grabowski wrote: > On ...
9 years, 1 month ago (2011-10-27 11:01:54 UTC) #7
John Grabowski
More better diffs send up. PTAL. http://codereview.chromium.org/8353025/diff/12001/chrome/browser/autofill/autofill_external_delegate.cc File chrome/browser/autofill/autofill_external_delegate.cc (right): http://codereview.chromium.org/8353025/diff/12001/chrome/browser/autofill/autofill_external_delegate.cc#newcode19 chrome/browser/autofill/autofill_external_delegate.cc:19: RenderViewHost* host = ...
9 years, 1 month ago (2011-10-27 17:42:20 UTC) #8
Ilya Sherman
LGTM. Thanks for your patience :) http://codereview.chromium.org/8353025/diff/12001/chrome/browser/autofill/autofill_external_delegate.h File chrome/browser/autofill/autofill_external_delegate.h (right): http://codereview.chromium.org/8353025/diff/12001/chrome/browser/autofill/autofill_external_delegate.h#newcode29 chrome/browser/autofill/autofill_external_delegate.h:29: void SelectAutofillSuggestionAtIndex(int listIndex); ...
9 years, 1 month ago (2011-10-27 21:17:23 UTC) #9
dhollowa
LGTM.
9 years, 1 month ago (2011-10-27 21:32:48 UTC) #10
Ilya Sherman
Quick heads up: you'll probably need to rebase to catch up to http://codereview.chromium.org/8351027/
9 years, 1 month ago (2011-10-28 20:03:15 UTC) #11
John Grabowski
On 2011/10/28 20:03:15, Ilya Sherman wrote: > Quick heads up: you'll probably need to rebase ...
9 years, 1 month ago (2011-10-28 20:49:10 UTC) #12
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/jrg@chromium.org/8353025/19003
9 years, 1 month ago (2011-10-28 23:16:14 UTC) #13
commit-bot: I haz the power
Change committed as 107839
9 years, 1 month ago (2011-10-29 00:51:06 UTC) #14
jam
http://codereview.chromium.org/8353025/diff/19003/content/content_common.gypi File content/content_common.gypi (right): http://codereview.chromium.org/8353025/diff/19003/content/content_common.gypi#newcode62 content/content_common.gypi:62: 'common/autofill_messages.h', this is in the wrong place.. this belongs ...
9 years, 1 month ago (2011-10-29 01:48:03 UTC) #15
John Grabowski
9 years, 1 month ago (2011-10-31 16:52:14 UTC) #16
On 2011/10/29 01:48:03, John Abd-El-Malek wrote:
> http://codereview.chromium.org/8353025/diff/19003/content/content_common.gypi
> File content/content_common.gypi (right):
> 
>
http://codereview.chromium.org/8353025/diff/19003/content/content_common.gypi...
> content/content_common.gypi:62: 'common/autofill_messages.h',
> this is in the wrong place.. this belongs in chrome_common.gypi

I will follow up in new CL

Powered by Google App Engine
This is Rietveld 408576698