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

Issue 6390006: Create autofill subdirectory in chrome/renderer (Closed)

Created:
9 years, 11 months ago by Ilya Sherman
Modified:
9 years, 7 months ago
Reviewers:
dhollowa
CC:
chromium-reviews, brettw-cc_chromium.org, darin-cc_chromium.org, Paweł Hajdan Jr., James Hawkins, dhollowa, Ilya Sherman
Visibility:
Public.

Description

Create autofill subdirectory in chrome/renderer BUG=none TEST=compiles Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=73081

Patch Set 1 #

Patch Set 2 : Fix header guards #

Patch Set 3 : Fix test compile errors #

Patch Set 4 : Style fix #

Patch Set 5 : AutoFillHelper => AutoFillAgent; PasswordAutocompleteManager => PasswordAutoFillManager #

Patch Set 6 : Re-add moved files to git #

Patch Set 7 : Fix compile #

Total comments: 1

Patch Set 8 : Added using directives #

Total comments: 4

Patch Set 9 : Using order #

Unified diffs Side-by-side diffs Delta from patch set Stats (+221 lines, -192 lines) Patch
M chrome/chrome_renderer.gypi View 1 2 3 4 3 chunks +6 lines, -10 lines 0 comments Download
M chrome/chrome_tests.gypi View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
A + chrome/renderer/autofill/autofill_agent.h View 1 2 3 4 5 5 chunks +24 lines, -19 lines 0 comments Download
A + chrome/renderer/autofill/autofill_agent.cc View 1 2 3 4 5 15 chunks +59 lines, -58 lines 0 comments Download
A + chrome/renderer/autofill/form_autocomplete_browsertest.cc View 0 chunks +-1 lines, --1 lines 0 comments Download
A + chrome/renderer/autofill/form_manager.h View 1 3 chunks +7 lines, -3 lines 0 comments Download
A + chrome/renderer/autofill/form_manager.cc View 1 2 3 3 chunks +5 lines, -1 line 0 comments Download
A + chrome/renderer/autofill/form_manager_browsertest.cc View 1 2 3 4 5 6 7 8 2 chunks +3 lines, -1 line 0 comments Download
A + chrome/renderer/autofill/password_autofill_manager.h View 1 2 3 4 5 5 chunks +21 lines, -20 lines 0 comments Download
A + chrome/renderer/autofill/password_autofill_manager.cc View 1 2 3 4 5 18 chunks +34 lines, -32 lines 0 comments Download
A + chrome/renderer/autofill/password_autofill_manager_unittest.cc View 1 2 3 4 5 6 12 chunks +28 lines, -22 lines 0 comments Download
M chrome/renderer/render_view.cc View 1 2 3 4 5 6 7 6 chunks +15 lines, -11 lines 0 comments Download
M chrome/renderer/render_view_browsertest.cc View 1 2 3 4 3 chunks +3 lines, -3 lines 0 comments Download
M chrome/test/render_view_test.h View 1 2 3 4 2 chunks +6 lines, -4 lines 0 comments Download
M chrome/test/render_view_test.cc View 1 2 3 4 5 6 7 3 chunks +7 lines, -5 lines 0 comments Download

Messages

Total messages: 9 (0 generated)
Ilya Sherman
9 years, 11 months ago (2011-01-28 07:20:35 UTC) #1
Ilya Sherman
(1) password autocomplete seems like it should live in the autofill directory too, Done. (2) ...
9 years, 11 months ago (2011-01-29 02:14:19 UTC) #2
dhollowa
For symmetry... form_manager -> form_autofill_manager, to match password_autofill_manager? On 2011/01/29 02:14:19, Ilya Sherman wrote: > ...
9 years, 11 months ago (2011-01-29 02:52:58 UTC) #3
Ilya Sherman
On 2011/01/29 02:52:58, dhollowa wrote: > For symmetry... form_manager -> form_autofill_manager, to match > password_autofill_manager? ...
9 years, 10 months ago (2011-01-29 04:06:20 UTC) #4
dhollowa
http://codereview.chromium.org/6390006/diff/20001/chrome/renderer/autofill/form_manager.h File chrome/renderer/autofill/form_manager.h (right): http://codereview.chromium.org/6390006/diff/20001/chrome/renderer/autofill/form_manager.h#newcode26 chrome/renderer/autofill/form_manager.h:26: namespace autofill { I think we should not use ...
9 years, 10 months ago (2011-01-29 04:33:54 UTC) #5
dhollowa
As discussed: happy medium is (1) keep the |autofill| namespace, (2) have |using| directives in ...
9 years, 10 months ago (2011-01-29 05:09:44 UTC) #6
Ilya Sherman
On 2011/01/29 05:09:44, dhollowa wrote: > As discussed: happy medium is (1) keep the |autofill| ...
9 years, 10 months ago (2011-01-29 05:22:06 UTC) #7
dhollowa
LGTM. http://codereview.chromium.org/6390006/diff/21016/chrome/renderer/autofill/form_autocomplete_browsertest.cc File chrome/renderer/autofill/form_autocomplete_browsertest.cc (right): http://codereview.chromium.org/6390006/diff/21016/chrome/renderer/autofill/form_autocomplete_browsertest.cc#newcode5 chrome/renderer/autofill/form_autocomplete_browsertest.cc:5: #include "chrome/common/autofill_messages.h" Funny. No changes. Why is this ...
9 years, 10 months ago (2011-01-29 05:30:20 UTC) #8
Ilya Sherman
9 years, 10 months ago (2011-01-29 05:42:46 UTC) #9
http://codereview.chromium.org/6390006/diff/21016/chrome/renderer/autofill/fo...
File chrome/renderer/autofill/form_autocomplete_browsertest.cc (right):

http://codereview.chromium.org/6390006/diff/21016/chrome/renderer/autofill/fo...
chrome/renderer/autofill/form_autocomplete_browsertest.cc:5: #include
"chrome/common/autofill_messages.h"
On 2011/01/29 05:30:20, dhollowa wrote:
> Funny.  No changes.  Why is this listed then?

The file moved into the autofill/ directory ;)

http://codereview.chromium.org/6390006/diff/21016/chrome/test/render_view_tes...
File chrome/test/render_view_test.cc (right):

http://codereview.chromium.org/6390006/diff/21016/chrome/test/render_view_tes...
chrome/test/render_view_test.cc:42: using autofill::AutoFillAgent;
On 2011/01/29 05:30:20, dhollowa wrote:
> This should be above WebKit namespace.

As discussed offline, going with unix sort's order: lowercase follows uppercase

Powered by Google App Engine
This is Rietveld 408576698