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

Issue 848993002: Improve apps v2 upgrade UX (Closed)

Created:
5 years, 11 months ago by kelvinp
Modified:
5 years, 11 months ago
Reviewers:
Jamie
CC:
chromium-reviews, chromoting-reviews_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Improve apps v2 upgrade UX The current v1 web-app allows users to sign in as any user. Some users may be signed in using a different account than their chrome profile. When these users upgrade to the v2 app, their host list will be empty and it is not straightforward why. This CL shows a migration tip to inform the users to sign-in to their previous account if necessary. BUG=369835 Committed: https://crrev.com/ef56d877133d43c368ba50cf3ced6c39ec2f9c6c Cr-Commit-Position: refs/heads/master@{#312549}

Patch Set 1 : #

Total comments: 24

Patch Set 2 : Address CL feedback #

Total comments: 16

Patch Set 3 : Refactor + UT #

Total comments: 27

Patch Set 4 : Address CL feedback #

Total comments: 10

Patch Set 5 : Address outstanding feedbacks #

Unified diffs Side-by-side diffs Delta from patch set Stats (+368 lines, -47 lines) Patch
M remoting/remoting_webapp_files.gypi View 1 2 2 chunks +2 lines, -0 lines 0 comments Download
M remoting/resources/remoting_strings.grd View 1 2 chunks +6 lines, -0 lines 0 comments Download
M remoting/webapp/base/html/main.css View 1 chunk +0 lines, -7 lines 0 comments Download
M remoting/webapp/base/js/base.js View 1 2 3 4 1 chunk +23 lines, -0 lines 0 comments Download
M remoting/webapp/crd/html/ui_me2me.html View 1 chunk +2 lines, -11 lines 0 comments Download
A remoting/webapp/crd/js/apps_v2_migration.js View 1 2 3 4 1 chunk +106 lines, -0 lines 0 comments Download
M remoting/webapp/crd/js/host_list.js View 1 2 3 4 2 chunks +42 lines, -4 lines 0 comments Download
M remoting/webapp/crd/js/remoting.js View 1 2 2 chunks +0 lines, -25 lines 0 comments Download
A remoting/webapp/unittests/apps_v2_migration_unittest.js View 1 2 3 4 1 chunk +103 lines, -0 lines 0 comments Download
M remoting/webapp/unittests/chrome_mocks.js View 1 2 1 chunk +84 lines, -0 lines 0 comments Download

Messages

Total messages: 17 (5 generated)
kelvinp
PTAL https://codereview.chromium.org/848993002/diff/20001/remoting/webapp/crd/js/remoting.js File remoting/webapp/crd/js/remoting.js (left): https://codereview.chromium.org/848993002/diff/20001/remoting/webapp/crd/js/remoting.js#oldcode248 remoting/webapp/crd/js/remoting.js:248: 'remoting-email' We need to migrate 'remoting-email' as well. ...
5 years, 11 months ago (2015-01-13 23:05:47 UTC) #3
Jamie
I haven't looked at all of this in detail because I suspect that my comment ...
5 years, 11 months ago (2015-01-14 03:55:29 UTC) #4
kelvinp
PTAL https://codereview.chromium.org/848993002/diff/20001/remoting/resources/remoting_strings.grd File remoting/resources/remoting_strings.grd (right): https://codereview.chromium.org/848993002/diff/20001/remoting/resources/remoting_strings.grd#newcode320 remoting/resources/remoting_strings.grd:320: You have previously signed-in as <ph name="USER_NAME">$1<ex>John Doe</ex></ph> ...
5 years, 11 months ago (2015-01-15 01:10:14 UTC) #6
Jamie
https://codereview.chromium.org/848993002/diff/20001/remoting/webapp/crd/js/remoting.js File remoting/webapp/crd/js/remoting.js (left): https://codereview.chromium.org/848993002/diff/20001/remoting/webapp/crd/js/remoting.js#oldcode248 remoting/webapp/crd/js/remoting.js:248: 'remoting-email' On 2015/01/13 23:05:47, kelvinp wrote: > We need ...
5 years, 11 months ago (2015-01-15 20:51:31 UTC) #7
kelvinp
PTAL https://codereview.chromium.org/848993002/diff/60001/remoting/webapp/crd/js/host_list.js File remoting/webapp/crd/js/host_list.js (right): https://codereview.chromium.org/848993002/diff/60001/remoting/webapp/crd/js/host_list.js#newcode305 remoting/webapp/crd/js/host_list.js:305: remoting.HostList.prototype.showEmptyText_ = function(hostingSupported) { On 2015/01/15 20:51:30, Jamie ...
5 years, 11 months ago (2015-01-20 19:41:00 UTC) #9
Jamie
This is looking pretty good now. Most of these comments are nits, but I'd like ...
5 years, 11 months ago (2015-01-20 22:32:02 UTC) #10
kelvinp
PTAL https://codereview.chromium.org/848993002/diff/100001/remoting/webapp/crd/js/apps_v2_migration.js File remoting/webapp/crd/js/apps_v2_migration.js (right): https://codereview.chromium.org/848993002/diff/100001/remoting/webapp/crd/js/apps_v2_migration.js#newcode29 remoting/webapp/crd/js/apps_v2_migration.js:29: remoting.MigrationSettings.prototype.hasHosts = /** @type {boolean}*/ (false); On 2015/01/20 ...
5 years, 11 months ago (2015-01-21 21:16:21 UTC) #11
Jamie
LGTM with nits. https://codereview.chromium.org/848993002/diff/120001/remoting/webapp/crd/js/apps_v2_migration.js File remoting/webapp/crd/js/apps_v2_migration.js (right): https://codereview.chromium.org/848993002/diff/120001/remoting/webapp/crd/js/apps_v2_migration.js#newcode72 remoting/webapp/crd/js/apps_v2_migration.js:72: * {email: string, fullName: string} if ...
5 years, 11 months ago (2015-01-21 22:02:20 UTC) #12
kelvinp
FYI https://codereview.chromium.org/848993002/diff/120001/remoting/webapp/crd/js/apps_v2_migration.js File remoting/webapp/crd/js/apps_v2_migration.js (right): https://codereview.chromium.org/848993002/diff/120001/remoting/webapp/crd/js/apps_v2_migration.js#newcode72 remoting/webapp/crd/js/apps_v2_migration.js:72: * {email: string, fullName: string} if the user ...
5 years, 11 months ago (2015-01-22 02:10:55 UTC) #14
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/848993002/140001
5 years, 11 months ago (2015-01-22 02:13:28 UTC) #15
commit-bot: I haz the power
Committed patchset #5 (id:140001)
5 years, 11 months ago (2015-01-22 03:14:05 UTC) #16
commit-bot: I haz the power
5 years, 11 months ago (2015-01-22 03:15:03 UTC) #17
Message was sent while issue was closed.
Patchset 5 (id:??) landed as
https://crrev.com/ef56d877133d43c368ba50cf3ced6c39ec2f9c6c
Cr-Commit-Position: refs/heads/master@{#312549}

Powered by Google App Engine
This is Rietveld 408576698