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

Issue 8689006: Create a field test for sync sign in promo strings. (Closed)

Created:
9 years, 1 month ago by SteveT
Modified:
9 years ago
CC:
chromium-reviews, arv (Not doing code reviews), odean
Visibility:
Public.

Description

Create a field test for sync sign in promo strings. BUG=105542 TEST=Start a new user so you see the sync promo page. Sign into Sync. Check about:histograms and ensure that SyncPromo.MessageDisplayed and SyncPromo.MessageOnSignIn both have the same enum value recorded. Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=112388

Patch Set 1 : Init #

Total comments: 10

Patch Set 2 : Removed an override that I no longer use #

Patch Set 3 : Addressed sail's comments #

Total comments: 5

Patch Set 4 : addressed nits and removed NTP cache stuff #

Total comments: 4

Patch Set 5 : '' #

Patch Set 6 : jeffreyc string change #

Patch Set 7 : clemw string change #

Patch Set 8 : small typo spotted by tmccoy #

Unified diffs Side-by-side diffs Delta from patch set Stats (+233 lines, -20 lines) Patch
M chrome/app/generated_resources.grd View 1 2 3 4 5 6 7 1 chunk +10 lines, -1 line 0 comments Download
M chrome/browser/chrome_browser_main.cc View 1 2 3 4 2 chunks +2 lines, -0 lines 0 comments Download
M chrome/browser/resources/sync_promo.js View 1 chunk +4 lines, -0 lines 0 comments Download
M chrome/browser/ui/webui/ntp/ntp_resource_cache.cc View 1 2 3 1 chunk +0 lines, -2 lines 0 comments Download
M chrome/browser/ui/webui/sync_promo_handler.h View 1 2 chunks +5 lines, -0 lines 0 comments Download
M chrome/browser/ui/webui/sync_promo_handler.cc View 1 2 3 4 3 chunks +22 lines, -2 lines 0 comments Download
A chrome/browser/ui/webui/sync_promo_trial.h View 1 2 3 4 5 1 chunk +57 lines, -0 lines 0 comments Download
A chrome/browser/ui/webui/sync_promo_trial.cc View 1 2 3 4 1 chunk +100 lines, -0 lines 0 comments Download
M chrome/browser/ui/webui/sync_promo_ui.h View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M chrome/browser/ui/webui/sync_promo_ui.cc View 1 2 5 chunks +12 lines, -9 lines 0 comments Download
M chrome/browser/ui/webui/sync_setup_handler.h View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M chrome/browser/ui/webui/sync_setup_handler.cc View 1 2 3 4 4 chunks +15 lines, -3 lines 0 comments Download
M chrome/chrome_browser.gypi View 1 chunk +2 lines, -0 lines 0 comments Download

Messages

Total messages: 19 (0 generated)
SteveT
Hey Sail, Here's my patch so far for the SyncPromo experiment. I have a few ...
9 years ago (2011-11-28 16:17:31 UTC) #1
sail
Hey Steve, I think this CL looks good so far. Could you add jhawkins to ...
9 years ago (2011-11-28 16:34:25 UTC) #2
SteveT
R+jhawkins - James, could you take a look at the SyncSetupUI and related changes? I'm ...
9 years ago (2011-11-28 20:07:32 UTC) #3
sail
http://codereview.chromium.org/8689006/diff/27002/chrome/browser/ui/webui/ntp/ntp_resource_cache.cc File chrome/browser/ui/webui/ntp/ntp_resource_cache.cc (right): http://codereview.chromium.org/8689006/diff/27002/chrome/browser/ui/webui/ntp/ntp_resource_cache.cc#newcode380 chrome/browser/ui/webui/ntp/ntp_resource_cache.cc:380: SyncSetupHandler::GetStaticLocalizedValues(&localized_strings, NULL); Hm.. this may not be needed anymore. ...
9 years ago (2011-11-28 20:14:02 UTC) #4
SteveT
My guess is that none of the strings from the Promo bits surface in the ...
9 years ago (2011-11-28 20:18:54 UTC) #5
sail
LGTM! http://codereview.chromium.org/8689006/diff/27002/chrome/browser/ui/webui/ntp/ntp_resource_cache.cc File chrome/browser/ui/webui/ntp/ntp_resource_cache.cc (right): http://codereview.chromium.org/8689006/diff/27002/chrome/browser/ui/webui/ntp/ntp_resource_cache.cc#newcode380 chrome/browser/ui/webui/ntp/ntp_resource_cache.cc:380: SyncSetupHandler::GetStaticLocalizedValues(&localized_strings, NULL); On 2011/11/28 20:14:02, sail wrote: > ...
9 years ago (2011-11-28 20:33:09 UTC) #6
SteveT
R+jeffreyc: Jeff, could you take a look at generated_resources.grd and make sure the new strings ...
9 years ago (2011-11-28 20:40:59 UTC) #7
sail
http://codereview.chromium.org/8689006/diff/28016/chrome/browser/ui/webui/sync_setup_handler.cc File chrome/browser/ui/webui/sync_setup_handler.cc (right): http://codereview.chromium.org/8689006/diff/28016/chrome/browser/ui/webui/sync_setup_handler.cc#newcode311 chrome/browser/ui/webui/sync_setup_handler.cc:311: // NTPResourceCache::CreateNewTabHTML, which is incapable of passing the I ...
9 years ago (2011-11-28 20:44:04 UTC) #8
James Hawkins
http://codereview.chromium.org/8689006/diff/28016/chrome/browser/ui/webui/sync_promo_trial.h File chrome/browser/ui/webui/sync_promo_trial.h (right): http://codereview.chromium.org/8689006/diff/28016/chrome/browser/ui/webui/sync_promo_trial.h#newcode14 chrome/browser/ui/webui/sync_promo_trial.h:14: class SyncPromoTrial { Please get rid of the class ...
9 years ago (2011-11-28 21:42:09 UTC) #9
SteveT
Cool, removed the use of a class+statics as you suggested. PTAL. Jeff - I've also ...
9 years ago (2011-11-28 22:11:15 UTC) #10
James Hawkins
lgtm
9 years ago (2011-11-28 22:12:52 UTC) #11
SteveT
Thanks, James! Jeff - so this is ready to go, pending your approval of the ...
9 years ago (2011-11-28 22:15:08 UTC) #12
jeffreyc
Let's change "to the web" to "to the cloud" as per the other thread. Otherwise, ...
9 years ago (2011-11-28 22:58:03 UTC) #13
SteveT
R+clemw,tmccoy,nepper Jeff's requested change is in.
9 years ago (2011-11-29 15:11:00 UTC) #14
SteveT
Clem's change is in. Just waiting on Travis and Patrick for approvals now.
9 years ago (2011-11-29 17:34:12 UTC) #15
SteveT
Travis and Patrick - can I ping you guys on this?
9 years ago (2011-11-30 17:33:03 UTC) #16
Patrick Nepper
On 2011/11/30 17:33:03, SteveT wrote: > Travis and Patrick - can I ping you guys ...
9 years ago (2011-11-30 21:38:30 UTC) #17
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/stevet@chromium.org/8689006/32001
9 years ago (2011-12-01 01:54:44 UTC) #18
commit-bot: I haz the power
9 years ago (2011-12-01 03:17:42 UTC) #19
Change committed as 112388

Powered by Google App Engine
This is Rietveld 408576698