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

Issue 2729020: Show Captcha dialog. (Closed)

Created:
10 years, 6 months ago by Nikita (slow)
Modified:
9 years, 7 months ago
CC:
chromium-os-reviews_chromium.org, finnur+watch_chromium.org, nkostylev+cc_chromium.org, ben+cc_chromium.org, Paul Godavari, Paweł Hajdan Jr., davemoore+watch_chromium.org
Base URL:
git://codf21.jail/chromium.git
Visibility:
Public.

Description

Show Captcha dialog. Refactor ImageDownloader/ImageDecoder into a separate classes. Resources submitted in http://codereview.chromium.org/2856003 BUG= http://crosbug.com/3486 TEST=Select "New User" screen, enter new account for this device. Enter incorrect password 3 times. After captcha is presented and entered login should succeed. Committed: http://chrome-svn/viewvc/chromeos?view=rev&revision=49965

Patch Set 1 #

Patch Set 2 : small fixed #

Patch Set 3 : merge #

Total comments: 34

Patch Set 4 : fixes #

Total comments: 2

Patch Set 5 : merge #

Patch Set 6 : merge #

Patch Set 7 : ImageDownloader deletes itself on URL fetch #

Patch Set 8 : delete on invalid code #

Patch Set 9 : remove debug line #

Unified diffs Side-by-side diffs Delta from patch set Stats (+566 lines, -78 lines) Patch
chrome/browser/chromeos/login/authenticator.h View 1 chunk +4 lines, -1 line 0 comments Download
chrome/browser/chromeos/login/captcha_view.h View 1 2 3 4 5 6 1 chunk +86 lines, -0 lines 0 comments Download
A chrome/browser/chromeos/login/captcha_view.cc View 1 2 3 4 5 6 1 chunk +111 lines, -0 lines 0 comments Download
M chrome/browser/chromeos/login/existing_user_controller.h View 4 chunks +15 lines, -1 line 0 comments Download
M chrome/browser/chromeos/login/existing_user_controller.cc View 1 2 3 8 chunks +52 lines, -2 lines 0 comments Download
M chrome/browser/chromeos/login/google_authenticator.h View 1 2 3 2 chunks +8 lines, -1 line 0 comments Download
M chrome/browser/chromeos/login/google_authenticator.cc View 1 2 3 2 chunks +35 lines, -10 lines 0 comments Download
M chrome/browser/chromeos/login/google_authenticator_unittest.cc View 1 2 3 1 chunk +2 lines, -1 line 0 comments Download
A chrome/browser/chromeos/login/image_decoder.h View 1 chunk +54 lines, -0 lines 0 comments Download
A chrome/browser/chromeos/login/image_decoder.cc View 1 chunk +46 lines, -0 lines 0 comments Download
A chrome/browser/chromeos/login/image_downloader.h View 4 5 6 7 1 chunk +46 lines, -0 lines 0 comments Download
A chrome/browser/chromeos/login/image_downloader.cc View 4 5 6 7 1 chunk +62 lines, -0 lines 0 comments Download
M chrome/browser/chromeos/login/login_screen.cc View 1 chunk +2 lines, -1 line 0 comments Download
M chrome/browser/chromeos/login/login_utils.h View 1 chunk +7 lines, -0 lines 0 comments Download
M chrome/browser/chromeos/login/login_utils.cc View 1 2 3 3 chunks +15 lines, -14 lines 0 comments Download
M chrome/browser/chromeos/login/mock_authenticator.h View 1 2 3 4 5 6 2 chunks +5 lines, -2 lines 0 comments Download
M chrome/browser/chromeos/login/user_image_downloader.h View 1 2 3 4 5 6 3 chunks +6 lines, -13 lines 0 comments Download
M chrome/browser/chromeos/login/user_image_downloader.cc View 1 2 3 4 5 6 3 chunks +3 lines, -31 lines 0 comments Download
M chrome/chrome_browser.gypi View 1 2 3 4 5 6 2 chunks +7 lines, -1 line 0 comments Download

Messages

Total messages: 7 (0 generated)
Nikita (slow)
10 years, 6 months ago (2010-06-11 18:31:46 UTC) #1
sky
http://codereview.chromium.org/2729020/diff/5001/6004 File chrome/browser/chromeos/image_decoder.h (right): http://codereview.chromium.org/2729020/diff/5001/6004#newcode17 chrome/browser/chromeos/image_decoder.h:17: class ImageDecoder : public UtilityProcessHost::Client { Are we only ...
10 years, 6 months ago (2010-06-14 17:38:46 UTC) #2
tfarina
Some style comments below. -Thiago http://codereview.chromium.org/2729020/diff/5001/6004 File chrome/browser/chromeos/image_decoder.h (right): http://codereview.chromium.org/2729020/diff/5001/6004#newcode23 chrome/browser/chromeos/image_decoder.h:23: protected: please add a ...
10 years, 6 months ago (2010-06-14 20:23:02 UTC) #3
Nikita (slow)
I've uploaded resources in a separate CL http://codereview.chromium.org/2729020/diff/5001/6004 File chrome/browser/chromeos/image_decoder.h (right): http://codereview.chromium.org/2729020/diff/5001/6004#newcode17 chrome/browser/chromeos/image_decoder.h:17: class ImageDecoder ...
10 years, 6 months ago (2010-06-15 17:10:27 UTC) #4
sky
http://codereview.chromium.org/2729020/diff/15001/16013 File chrome/browser/chromeos/login/image_downloader.cc (right): http://codereview.chromium.org/2729020/diff/15001/16013#newcode27 chrome/browser/chromeos/login/image_downloader.cc:27: image_fetcher_.reset(new URLFetcher(GURL(image_url), URLFetcher::GET, this)); Is this object getting deleted? ...
10 years, 6 months ago (2010-06-15 19:01:26 UTC) #5
Nikita (slow)
http://codereview.chromium.org/2729020/diff/15001/16013 File chrome/browser/chromeos/login/image_downloader.cc (right): http://codereview.chromium.org/2729020/diff/15001/16013#newcode27 chrome/browser/chromeos/login/image_downloader.cc:27: image_fetcher_.reset(new URLFetcher(GURL(image_url), URLFetcher::GET, this)); On 2010/06/15 19:01:26, sky wrote: ...
10 years, 6 months ago (2010-06-16 15:34:33 UTC) #6
sky
10 years, 6 months ago (2010-06-16 16:58:15 UTC) #7
LGTM

Powered by Google App Engine
This is Rietveld 408576698