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

Issue 1821393002: Adding the message definitions for the remote_security_key STDIO communication classes. (Closed)

Created:
4 years, 9 months ago by joedow
Modified:
4 years, 8 months ago
Reviewers:
Sergey Ulanov
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

Adding the message definitions for the remote_security_key STDIO communication classes. This is the first of several CLs which will introduce the classes needed by the remote_security_key_process to communicate with security key enabled tools. BUG=584463 Committed: https://crrev.com/fd9d9f4e926a8471e2bdeb621e0916e4edba513c Cr-Commit-Position: refs/heads/master@{#384128}

Patch Set 1 #

Patch Set 2 : Cleanup berfore review #

Total comments: 10

Patch Set 3 : Addressing feedback #

Total comments: 19

Patch Set 4 : Addressing feedback #

Patch Set 5 : Adding some enum value checking code #

Patch Set 6 : Fixing a non-windows build break #

Total comments: 2

Patch Set 7 : Updating enum translation function per feedback #

Unified diffs Side-by-side diffs Delta from patch set Stats (+208 lines, -0 lines) Patch
A remoting/host/security_key/security_key_message.h View 1 2 3 4 1 chunk +137 lines, -0 lines 0 comments Download
A remoting/host/security_key/security_key_message.cc View 1 2 3 4 5 6 1 chunk +69 lines, -0 lines 0 comments Download
M remoting/remoting_host_srcs.gypi View 1 2 3 1 chunk +2 lines, -0 lines 0 comments Download

Messages

Total messages: 18 (4 generated)
joedow
This is the first CL in a series of CLs which implement that last pieces ...
4 years, 9 months ago (2016-03-23 00:13:43 UTC) #2
Sergey Ulanov
https://codereview.chromium.org/1821393002/diff/20001/remoting/host/security_key/remote_security_key_messages.cc File remoting/host/security_key/remote_security_key_messages.cc (right): https://codereview.chromium.org/1821393002/diff/20001/remoting/host/security_key/remote_security_key_messages.cc#newcode8 remoting/host/security_key/remote_security_key_messages.cc:8: const uint32_t remoting::kMaxRemoteSecurityKeyMessageByteCount = 256 * 1024; I think ...
4 years, 9 months ago (2016-03-23 19:07:25 UTC) #3
joedow
Addressed CR feedback, PTAL! https://codereview.chromium.org/1821393002/diff/20001/remoting/host/security_key/remote_security_key_messages.cc File remoting/host/security_key/remote_security_key_messages.cc (right): https://codereview.chromium.org/1821393002/diff/20001/remoting/host/security_key/remote_security_key_messages.cc#newcode8 remoting/host/security_key/remote_security_key_messages.cc:8: const uint32_t remoting::kMaxRemoteSecurityKeyMessageByteCount = 256 ...
4 years, 9 months ago (2016-03-24 17:48:08 UTC) #4
Sergey Ulanov
I'll start looking at the reader and writer CLs https://codereview.chromium.org/1821393002/diff/40001/remoting/host/security_key/security_key_message.cc File remoting/host/security_key/security_key_message.cc (right): https://codereview.chromium.org/1821393002/diff/40001/remoting/host/security_key/security_key_message.cc#newcode12 remoting/host/security_key/security_key_message.cc:12: ...
4 years, 9 months ago (2016-03-24 21:51:18 UTC) #5
joedow
PTAL! https://codereview.chromium.org/1821393002/diff/40001/remoting/host/security_key/security_key_message.cc File remoting/host/security_key/security_key_message.cc (right): https://codereview.chromium.org/1821393002/diff/40001/remoting/host/security_key/security_key_message.cc#newcode12 remoting/host/security_key/security_key_message.cc:12: const int kRemoteSecurityKeyMessageControlCodeByteCount = sizeof(uint8_t); On 2016/03/24 21:51:17, ...
4 years, 8 months ago (2016-03-28 19:44:27 UTC) #6
Sergey Ulanov
https://codereview.chromium.org/1821393002/diff/40001/remoting/host/security_key/security_key_message.cc File remoting/host/security_key/security_key_message.cc (right): https://codereview.chromium.org/1821393002/diff/40001/remoting/host/security_key/security_key_message.cc#newcode35 remoting/host/security_key/security_key_message.cc:35: if (type_ == RemoteSecurityKeyMessageType::kUnitialized) { On 2016/03/28 19:44:26, joedow ...
4 years, 8 months ago (2016-03-29 01:05:51 UTC) #7
joedow
Added some enum value checking code. PTAL!
4 years, 8 months ago (2016-03-29 20:33:26 UTC) #8
joedow
Fixed a non-windows build break. PTAL!
4 years, 8 months ago (2016-03-29 21:50:40 UTC) #9
joedow
Ping!
4 years, 8 months ago (2016-03-30 17:29:52 UTC) #10
Sergey Ulanov
lgtm https://codereview.chromium.org/1821393002/diff/100001/remoting/host/security_key/security_key_message.cc File remoting/host/security_key/security_key_message.cc (right): https://codereview.chromium.org/1821393002/diff/100001/remoting/host/security_key/security_key_message.cc#newcode32 remoting/host/security_key/security_key_message.cc:32: switch (value) { I think you can also ...
4 years, 8 months ago (2016-03-30 21:21:50 UTC) #11
joedow
Thanks! https://codereview.chromium.org/1821393002/diff/100001/remoting/host/security_key/security_key_message.cc File remoting/host/security_key/security_key_message.cc (right): https://codereview.chromium.org/1821393002/diff/100001/remoting/host/security_key/security_key_message.cc#newcode32 remoting/host/security_key/security_key_message.cc:32: switch (value) { On 2016/03/30 21:21:50, Sergey Ulanov ...
4 years, 8 months ago (2016-03-30 21:46:11 UTC) #12
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1821393002/120001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1821393002/120001
4 years, 8 months ago (2016-03-30 21:46:41 UTC) #15
commit-bot: I haz the power
Committed patchset #7 (id:120001)
4 years, 8 months ago (2016-03-30 22:52:05 UTC) #16
commit-bot: I haz the power
4 years, 8 months ago (2016-03-30 22:53:29 UTC) #18
Message was sent while issue was closed.
Patchset 7 (id:??) landed as
https://crrev.com/fd9d9f4e926a8471e2bdeb621e0916e4edba513c
Cr-Commit-Position: refs/heads/master@{#384128}

Powered by Google App Engine
This is Rietveld 408576698