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

Issue 27044004: Added multi-profile support for attestation on chromeos. (Closed)

Created:
7 years, 2 months ago by Darren Krahn
Modified:
7 years, 2 months ago
CC:
chromium-reviews, extensions-reviews_chromium.org, nkostylev+watch_chromium.org, dkrahn+watch_chromium.org, oshima+watch_chromium.org, chromium-apps-reviews_chromium.org, stevenjb+watch_chromium.org, davemoore+watch_chromium.org
Visibility:
Public.

Description

Added multi-profile support for attestation on chromeos. All certified keys and certificates will be associated with the correct profile when multiple profiles are used. BUG=chromium:205206 TEST=unit, manual Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=229891

Patch Set 1 #

Patch Set 2 : Added OWNERS #

Total comments: 20

Patch Set 3 : #

Patch Set 4 : Fixed comments #

Patch Set 5 : rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+285 lines, -112 lines) Patch
M chrome/browser/chromeos/attestation/OWNERS View 1 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/chromeos/attestation/attestation_policy_observer.cc View 4 chunks +4 lines, -0 lines 0 comments Download
M chrome/browser/chromeos/attestation/attestation_policy_observer_unittest.cc View 1 2 3 chunks +13 lines, -13 lines 0 comments Download
M chrome/browser/chromeos/attestation/platform_verification_flow.h View 1 2 3 3 chunks +10 lines, -2 lines 0 comments Download
M chrome/browser/chromeos/attestation/platform_verification_flow.cc View 1 2 5 chunks +20 lines, -1 line 0 comments Download
M chrome/browser/chromeos/attestation/platform_verification_flow_unittest.cc View 1 2 1 chunk +3 lines, -2 lines 0 comments Download
M chrome/browser/extensions/api/enterprise_platform_keys_private/OWNERS View 1 1 chunk +2 lines, -1 line 0 comments Download
M chrome/browser/extensions/api/enterprise_platform_keys_private/enterprise_platform_keys_private_api.h View 1 2 3 chunks +3 lines, -0 lines 0 comments Download
M chrome/browser/extensions/api/enterprise_platform_keys_private/enterprise_platform_keys_private_api.cc View 1 2 9 chunks +14 lines, -5 lines 0 comments Download
M chrome/browser/extensions/api/enterprise_platform_keys_private/enterprise_platform_keys_private_api_unittest.cc View 1 2 20 chunks +25 lines, -16 lines 0 comments Download
M chromeos/attestation/OWNERS View 1 1 chunk +1 line, -0 lines 0 comments Download
M chromeos/attestation/attestation_flow.h View 1 2 3 6 chunks +12 lines, -6 lines 0 comments Download
M chromeos/attestation/attestation_flow.cc View 1 2 9 chunks +14 lines, -5 lines 0 comments Download
M chromeos/attestation/attestation_flow_unittest.cc View 1 2 7 chunks +11 lines, -8 lines 0 comments Download
M chromeos/cryptohome/async_method_caller.h View 1 2 3 4 chunks +19 lines, -7 lines 0 comments Download
M chromeos/cryptohome/async_method_caller.cc View 1 2 6 chunks +10 lines, -2 lines 0 comments Download
M chromeos/cryptohome/mock_async_method_caller.h View 1 2 1 chunk +9 lines, -5 lines 0 comments Download
M chromeos/cryptohome/mock_async_method_caller.cc View 1 chunk +6 lines, -6 lines 0 comments Download
M chromeos/dbus/cryptohome_client.h View 1 2 3 6 chunks +40 lines, -10 lines 0 comments Download
M chromeos/dbus/cryptohome_client.cc View 1 2 3 4 12 chunks +29 lines, -11 lines 0 comments Download
M chromeos/dbus/fake_cryptohome_client.h View 1 2 3 4 2 chunks +10 lines, -1 line 0 comments Download
M chromeos/dbus/fake_cryptohome_client.cc View 1 2 3 10 chunks +10 lines, -1 line 0 comments Download
M chromeos/dbus/mock_cryptohome_client.h View 1 2 1 chunk +19 lines, -10 lines 0 comments Download

Messages

Total messages: 12 (0 generated)
Darren Krahn
+satorux: chromeos/dbus, chromeos/cryptohome +bartfab: OWNERS, attestation, extension api +pastarmovj: OWNERS +mpcomplete: approve OWNERS for extension ...
7 years, 2 months ago (2013-10-11 22:15:09 UTC) #1
Matt Perry
lgtm
7 years, 2 months ago (2013-10-11 22:26:59 UTC) #2
bartfab (slow)
https://chromiumcodereview.appspot.com/27044004/diff/3001/chrome/browser/chromeos/attestation/platform_verification_flow.cc File chrome/browser/chromeos/attestation/platform_verification_flow.cc (right): https://chromiumcodereview.appspot.com/27044004/diff/3001/chrome/browser/chromeos/attestation/platform_verification_flow.cc#newcode241 chrome/browser/chromeos/attestation/platform_verification_flow.cc:241: chromeos::User* user = user_manager_->GetUserByProfile( #include "chrome/browser/chromeos/login/user.h" https://chromiumcodereview.appspot.com/27044004/diff/3001/chrome/browser/chromeos/attestation/platform_verification_flow.cc#newcode242 chrome/browser/chromeos/attestation/platform_verification_flow.cc:242: Profile::FromBrowserContext(web_contents->GetBrowserContext())); ...
7 years, 2 months ago (2013-10-13 16:31:35 UTC) #3
pastarmovj
LGTM for the OWNERS files.
7 years, 2 months ago (2013-10-14 08:32:35 UTC) #4
Darren Krahn
https://chromiumcodereview.appspot.com/27044004/diff/3001/chrome/browser/chromeos/attestation/platform_verification_flow.cc File chrome/browser/chromeos/attestation/platform_verification_flow.cc (right): https://chromiumcodereview.appspot.com/27044004/diff/3001/chrome/browser/chromeos/attestation/platform_verification_flow.cc#newcode241 chrome/browser/chromeos/attestation/platform_verification_flow.cc:241: chromeos::User* user = user_manager_->GetUserByProfile( On 2013/10/13 16:31:35, bartfab wrote: ...
7 years, 2 months ago (2013-10-15 16:49:05 UTC) #5
Darren Krahn
+davidyu: CC for extension API
7 years, 2 months ago (2013-10-15 16:49:57 UTC) #6
satorux1
chromeos/dbus chromeos/cryptohome lgtm
7 years, 2 months ago (2013-10-16 01:52:09 UTC) #7
bartfab (slow)
Thanks for changing user_email to user_id. I am still uneasy about the comments referring to ...
7 years, 2 months ago (2013-10-16 12:53:46 UTC) #8
Darren Krahn
On 2013/10/16 12:53:46, bartfab wrote: > Thanks for changing user_email to user_id. I am still ...
7 years, 2 months ago (2013-10-17 22:59:17 UTC) #9
bartfab (slow)
lgtm
7 years, 2 months ago (2013-10-18 13:02:12 UTC) #10
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dkrahn@chromium.org/27044004/162001
7 years, 2 months ago (2013-10-21 17:01:42 UTC) #11
commit-bot: I haz the power
7 years, 2 months ago (2013-10-21 19:57:27 UTC) #12
Message was sent while issue was closed.
Change committed as 229891

Powered by Google App Engine
This is Rietveld 408576698