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

Unified Diff: remoting/host/security_key/remote_security_key_message_writer.h

Issue 1830433002: Adding the message writing class used for remote_security_key STDOUT communication. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@messages
Patch Set: Integrating security message changes Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: remoting/host/security_key/remote_security_key_message_writer.h
diff --git a/remoting/host/security_key/remote_security_key_message_writer.h b/remoting/host/security_key/remote_security_key_message_writer.h
new file mode 100644
index 0000000000000000000000000000000000000000..b3e2f199e92d4fe4a44cba689924f03f60d3be46
--- /dev/null
+++ b/remoting/host/security_key/remote_security_key_message_writer.h
@@ -0,0 +1,38 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef REMOTING_HOST_SECURITY_KEY_REMOTE_SECURITY_KEY_MESSAGE_WRITER_H_
+#define REMOTING_HOST_SECURITY_KEY_REMOTE_SECURITY_KEY_MESSAGE_WRITER_H_
+
+#include <string>
+
+#include "base/files/file.h"
+#include "base/macros.h"
+#include "remoting/host/security_key/security_key_message.h"
+
+namespace remoting {
+
+// Used for sending remote security key messages using a file handle.
+class RemoteSecurityKeyMessageWriter {
+ public:
+ explicit RemoteSecurityKeyMessageWriter(base::File output_file);
+ ~RemoteSecurityKeyMessageWriter();
+
+ // Writes a remote security key message w/o a payload to |output_stream_|.
+ bool WriteMessage(RemoteSecurityKeyMessageType message_type);
+
+ // Writes a remote security key message with a payload to |output_stream_|.
+ bool WriteMessage(RemoteSecurityKeyMessageType message_type,
+ const std::string& message_payload);
+
+ private:
+ base::File output_stream_;
+ bool write_failed_ = false;
+
+ DISALLOW_COPY_AND_ASSIGN(RemoteSecurityKeyMessageWriter);
+};
+
+} // namespace remoting
+
+#endif // REMOTING_HOST_SECURITY_KEY_REMOTE_SECURITY_KEY_MESSAGE_WRITER_H_

Powered by Google App Engine
This is Rietveld 408576698