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

Issue 1053773007: Add Platform Verification Mojo Services. (Closed)

Created:
5 years, 8 months ago by xhwang
Modified:
5 years, 7 months ago
CC:
chromium-reviews, creis+watch_chromium.org, qsr+mojo_chromium.org, viettrungluu+watch_chromium.org, ben+mojo_chromium.org, nasko+codewatch_chromium.org, yzshen+watch_chromium.org, abarth-chromium, Aaron Boodman, darin-cc_chromium.org, oshima+watch_chromium.org, darin (slow to review), dkrahn+watch_chromium.org, stevenjb+watch_chromium.org, davemoore+watch_chromium.org, ddorwin
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Add Platform Verification Mojo Services. Render frames can use this service to verify platform on ChromeOS. BUG=479836 Committed: https://crrev.com/9ab9648385b5455904aa91f62ce3e77df366f292 Cr-Commit-Position: refs/heads/master@{#329247}

Patch Set 1 #

Patch Set 2 : #

Patch Set 3 : fix gn build #

Total comments: 12

Patch Set 4 : comments addressed #

Total comments: 2

Patch Set 5 : comments addressed #

Patch Set 6 : rebase only #

Unified diffs Side-by-side diffs Delta from patch set Stats (+279 lines, -53 lines) Patch
M chrome/browser/chrome_content_browser_client.h View 1 2 3 4 5 1 chunk +3 lines, -1 line 0 comments Download
M chrome/browser/chrome_content_browser_client.cc View 1 2 3 4 5 3 chunks +12 lines, -0 lines 0 comments Download
M chrome/browser/chromeos/BUILD.gn View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/chromeos/DEPS View 1 1 chunk +1 line, -0 lines 0 comments Download
A chrome/browser/chromeos/attestation/platform_verification_impl.h View 1 2 3 1 chunk +59 lines, -0 lines 0 comments Download
A chrome/browser/chromeos/attestation/platform_verification_impl.cc View 1 2 3 1 chunk +76 lines, -0 lines 0 comments Download
M chrome/chrome_browser.gypi View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
M chrome/chrome_browser_chromeos.gypi View 1 2 3 4 5 4 chunks +54 lines, -52 lines 0 comments Download
M content/browser/frame_host/render_frame_host_impl.cc View 1 2 3 4 5 1 chunk +3 lines, -0 lines 0 comments Download
M content/public/browser/content_browser_client.h View 1 2 3 4 5 1 chunk +6 lines, -0 lines 0 comments Download
M media/mojo/interfaces/BUILD.gn View 1 1 chunk +4 lines, -0 lines 0 comments Download
A media/mojo/interfaces/mojo_bindings.gyp View 1 1 chunk +30 lines, -0 lines 0 comments Download
A media/mojo/interfaces/platform_verification.mojom View 1 2 3 4 1 chunk +29 lines, -0 lines 0 comments Download

Messages

Total messages: 31 (9 generated)
xhwang
A small step forward to not relying on pepper. PTAL
5 years, 7 months ago (2015-05-05 21:46:49 UTC) #3
xhwang
Add dalecurtis (for his advice on mojo/gyp/gn) and CC ddorwin. PTAL https://codereview.chromium.org/1053773007/diff/60001/chrome/browser/chrome_content_browser_client.cc File chrome/browser/chrome_content_browser_client.cc (right): ...
5 years, 7 months ago (2015-05-05 21:53:03 UTC) #5
DaleCurtis
lgtm % adding more details to the mojom. https://codereview.chromium.org/1053773007/diff/60001/media/mojo/interfaces/platform_verification.mojom File media/mojo/interfaces/platform_verification.mojom (right): https://codereview.chromium.org/1053773007/diff/60001/media/mojo/interfaces/platform_verification.mojom#newcode9 media/mojo/interfaces/platform_verification.mojom:9: ChallengePlatform(string ...
5 years, 7 months ago (2015-05-06 00:28:28 UTC) #6
DaleCurtis
Would be nice if there was a small app test for this too.
5 years, 7 months ago (2015-05-06 00:28:49 UTC) #7
Darren Krahn
The approach looks good. Added a few comments mostly on documentation / readability. https://codereview.chromium.org/1053773007/diff/60001/chrome/browser/chromeos/attestation/platform_verification_impl.cc File ...
5 years, 7 months ago (2015-05-06 19:02:41 UTC) #8
xhwang
comments addressed
5 years, 7 months ago (2015-05-07 00:26:09 UTC) #9
xhwang
On 2015/05/06 00:28:49, DaleCurtis wrote: > Would be nice if there was a small app ...
5 years, 7 months ago (2015-05-07 00:27:13 UTC) #10
xhwang
Comments addressed. PTAL again. https://codereview.chromium.org/1053773007/diff/60001/chrome/browser/chromeos/attestation/platform_verification_impl.cc File chrome/browser/chromeos/attestation/platform_verification_impl.cc (right): https://codereview.chromium.org/1053773007/diff/60001/chrome/browser/chromeos/attestation/platform_verification_impl.cc#newcode43 chrome/browser/chromeos/attestation/platform_verification_impl.cc:43: content::WebContents::FromRenderFrameHost(render_frame_host_), service_id, On 2015/05/06 19:02:40, ...
5 years, 7 months ago (2015-05-07 00:27:37 UTC) #11
DaleCurtis
lgtm https://codereview.chromium.org/1053773007/diff/80001/media/mojo/interfaces/platform_verification.mojom File media/mojo/interfaces/platform_verification.mojom (right): https://codereview.chromium.org/1053773007/diff/80001/media/mojo/interfaces/platform_verification.mojom#newcode17 media/mojo/interfaces/platform_verification.mojom:17: // - |success|: Whether the platform is successfully ...
5 years, 7 months ago (2015-05-07 00:49:48 UTC) #12
Darren Krahn
On 2015/05/07 00:27:13, xhwang wrote: > On 2015/05/06 00:28:49, DaleCurtis wrote: > > Would be ...
5 years, 7 months ago (2015-05-07 16:33:47 UTC) #13
xhwang
comments addressed
5 years, 7 months ago (2015-05-07 18:48:17 UTC) #14
xhwang
https://codereview.chromium.org/1053773007/diff/80001/media/mojo/interfaces/platform_verification.mojom File media/mojo/interfaces/platform_verification.mojom (right): https://codereview.chromium.org/1053773007/diff/80001/media/mojo/interfaces/platform_verification.mojom#newcode17 media/mojo/interfaces/platform_verification.mojom:17: // - |success|: Whether the platform is successfully verified. ...
5 years, 7 months ago (2015-05-07 18:49:46 UTC) #15
xhwang
On 2015/05/07 16:33:47, Darren Krahn wrote: > On 2015/05/07 00:27:13, xhwang wrote: > > On ...
5 years, 7 months ago (2015-05-07 18:52:33 UTC) #16
xhwang
xiyuan: Please OWNERS review chrome/browser/chromeos jam: Please OWNERS review content/
5 years, 7 months ago (2015-05-07 18:53:39 UTC) #18
xiyuan
c/b/chromeos lgtm
5 years, 7 months ago (2015-05-07 20:37:34 UTC) #19
jam
On 2015/05/07 18:53:39, xhwang wrote: > xiyuan: Please OWNERS review chrome/browser/chromeos > jam: Please OWNERS ...
5 years, 7 months ago (2015-05-11 17:15:26 UTC) #20
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1053773007/100001
5 years, 7 months ago (2015-05-11 17:25:32 UTC) #23
commit-bot: I haz the power
Try jobs failed on following builders: android_arm64_dbg_recipe on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/android_arm64_dbg_recipe/builds/74698) android_chromium_gn_compile_dbg on tryserver.chromium.linux (JOB_FAILED, ...
5 years, 7 months ago (2015-05-11 17:46:25 UTC) #25
xhwang
rebase only
5 years, 7 months ago (2015-05-11 18:55:33 UTC) #26
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1053773007/120001
5 years, 7 months ago (2015-05-11 21:16:26 UTC) #29
commit-bot: I haz the power
Committed patchset #6 (id:120001)
5 years, 7 months ago (2015-05-11 22:02:49 UTC) #30
commit-bot: I haz the power
5 years, 7 months ago (2015-05-11 22:03:25 UTC) #31
Message was sent while issue was closed.
Patchset 6 (id:??) landed as
https://crrev.com/9ab9648385b5455904aa91f62ce3e77df366f292
Cr-Commit-Position: refs/heads/master@{#329247}

Powered by Google App Engine
This is Rietveld 408576698