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

Issue 13470023: [autofill] First step towards autofill dialog on OSX. (Closed)

Created:
7 years, 8 months ago by groby-ooo-7-16
Modified:
7 years, 8 months ago
Reviewers:
sail, Evan Stade
CC:
chromium-reviews, Raman Kakilate, benquan, dhollowa+watch_chromium.org, ahutter, dbeam+watch-autofill_chromium.org, sail+watch_chromium.org, Dane Wallinga, dyu1, Albert Bodenhamer, estade+watch_chromium.org, Ilya Sherman
Visibility:
Public.

Description

[autofill] First step towards autofill dialog on OSX. This CL implements a blank tab-modal dialog that gets invoked when requestAutocomplete is used. TBR=jhawkins@chromium.org R=sail@chromium.org, estade@chromium.org BUG=157274 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=195286

Patch Set 1 #

Patch Set 2 : Manually build dialog #

Total comments: 27

Patch Set 3 : Address review issues, rebase to HEAD. #

Patch Set 4 : Address review comment. #

Patch Set 5 : Added test to execute dialog. #

Total comments: 8

Patch Set 6 : Rebase to HEAD, address comments. #

Patch Set 7 : Picking proper diff base. #

Patch Set 8 : Switch test to MessageLoopRunner. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+264 lines, -375 lines) Patch
M chrome/browser/ui/autofill/autofill_dialog_view.cc View 1 2 3 4 5 1 chunk +2 lines, -3 lines 0 comments Download
A + chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.h View 1 2 2 chunks +43 lines, -61 lines 0 comments Download
A + chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.mm View 1 2 3 4 1 chunk +162 lines, -117 lines 0 comments Download
A + chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa_browsertest.mm View 1 2 3 4 5 6 7 3 chunks +54 lines, -194 lines 0 comments Download
M chrome/chrome_browser_ui.gypi View 1 2 3 4 5 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/chrome_tests.gypi View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 25 (0 generated)
groby-ooo-7-16
Hey Sailesh, currently working on a tab-modal dialog for OSX/autofill. Since that whole area is ...
7 years, 8 months ago (2013-04-02 19:52:49 UTC) #1
sail
On 2013/04/02 19:52:49, groby wrote: > Hey Sailesh, currently working on a tab-modal dialog for ...
7 years, 8 months ago (2013-04-02 22:02:12 UTC) #2
groby-ooo-7-16
There's going to be a lot of auto-generation code in there already, so I might ...
7 years, 8 months ago (2013-04-02 22:32:19 UTC) #3
groby-ooo-7-16
sail:PTAL I have no idea why the review diff for the new files choses the ...
7 years, 8 months ago (2013-04-09 18:33:05 UTC) #4
sail
Looks really good, just some nits. Could you add a unit test to exercise this ...
7 years, 8 months ago (2013-04-10 02:36:56 UTC) #5
sail
https://codereview.chromium.org/13470023/diff/7004/chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.h File chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.h (right): https://codereview.chromium.org/13470023/diff/7004/chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.h#newcode78 chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.h:78: - (IBAction)closeSheet:(id)sender; On 2013/04/10 02:36:56, sail wrote: > end ...
7 years, 8 months ago (2013-04-10 02:37:26 UTC) #6
groby-ooo-7-16
sail: PTAL estade: chrome/browser/ui/autofill, please https://codereview.chromium.org/13470023/diff/7004/chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.h File chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.h (right): https://codereview.chromium.org/13470023/diff/7004/chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.h#newcode6 chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.h:6: #define CHROME_BROWSER_UI_VIEWS_AUTOFILL_AUTOFILL_DIALOG_COCOA_H_ Ooops :) ...
7 years, 8 months ago (2013-04-12 03:13:39 UTC) #7
Evan Stade
lgtm, but please switch the logic/comment to just if defined(TOOLKIT_GTK) return null
7 years, 8 months ago (2013-04-12 03:51:27 UTC) #8
groby-ooo-7-16
I need to at least check for OS_ANDROID, too. Also, currently running a compile test ...
7 years, 8 months ago (2013-04-12 17:37:13 UTC) #9
groby-ooo-7-16
estade: Ignore last message. Caffeine levels were insufficient. Fix uploaded.
7 years, 8 months ago (2013-04-12 17:50:25 UTC) #10
groby-ooo-7-16
sail: Added test to exercise dialog. PTAL
7 years, 8 months ago (2013-04-13 03:11:54 UTC) #11
Evan Stade
https://chromiumcodereview.appspot.com/13470023/diff/6005/chrome/browser/ui/autofill/autofill_dialog_view.cc File chrome/browser/ui/autofill/autofill_dialog_view.cc (right): https://chromiumcodereview.appspot.com/13470023/diff/6005/chrome/browser/ui/autofill/autofill_dialog_view.cc#newcode14 chrome/browser/ui/autofill/autofill_dialog_view.cc:14: // TODO(estade): implement the dialog on other platforms. See ...
7 years, 8 months ago (2013-04-15 19:04:36 UTC) #12
sail
LGTM https://codereview.chromium.org/13470023/diff/6005/chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa_browsertest.mm File chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa_browsertest.mm (right): https://codereview.chromium.org/13470023/diff/6005/chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa_browsertest.mm#newcode1 chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa_browsertest.mm:1: // Copyright (c) 2011 The Chromium Authors. All ...
7 years, 8 months ago (2013-04-15 19:09:53 UTC) #13
groby-ooo-7-16
Submitting whenever the CQ re-awakens ;) https://codereview.chromium.org/13470023/diff/6005/chrome/browser/ui/autofill/autofill_dialog_view.cc File chrome/browser/ui/autofill/autofill_dialog_view.cc (right): https://codereview.chromium.org/13470023/diff/6005/chrome/browser/ui/autofill/autofill_dialog_view.cc#newcode14 chrome/browser/ui/autofill/autofill_dialog_view.cc:14: // TODO(estade): implement ...
7 years, 8 months ago (2013-04-15 22:12:07 UTC) #14
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/groby@chromium.org/13470023/37001
7 years, 8 months ago (2013-04-18 00:10:37 UTC) #15
commit-bot: I haz the power
Presubmit check for 13470023-37001 failed and returned exit status 1. INFO:root:Found 6 file(s). Running presubmit ...
7 years, 8 months ago (2013-04-18 00:10:40 UTC) #16
groby-ooo-7-16
TBR'd jhawkins for gypi change
7 years, 8 months ago (2013-04-18 17:37:46 UTC) #17
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/groby@chromium.org/13470023/37001
7 years, 8 months ago (2013-04-18 17:38:00 UTC) #18
commit-bot: I haz the power
Sorry for I got bad news for ya. Compile failed with a clobber build on ...
7 years, 8 months ago (2013-04-18 18:36:47 UTC) #19
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/groby@chromium.org/13470023/37001
7 years, 8 months ago (2013-04-19 00:36:28 UTC) #20
commit-bot: I haz the power
Retried try job too often on mac_rel for step(s) browser_tests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=mac_rel&number=119498
7 years, 8 months ago (2013-04-19 02:36:50 UTC) #21
groby-ooo-7-16
sail: PTAL at browsertest - needed to switch to a MessageLoopRunner.
7 years, 8 months ago (2013-04-19 18:21:38 UTC) #22
sail
LGTM
7 years, 8 months ago (2013-04-19 18:53:56 UTC) #23
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/groby@chromium.org/13470023/58001
7 years, 8 months ago (2013-04-19 18:57:42 UTC) #24
commit-bot: I haz the power
7 years, 8 months ago (2013-04-19 21:17:35 UTC) #25
Message was sent while issue was closed.
Change committed as 195286

Powered by Google App Engine
This is Rietveld 408576698