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

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

Issue 2162083003: Renaming Gnubby and RemoteSecurityKey files/classes/members (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing a GYP build error Created 4 years, 5 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/security_key_message_writer_impl.h
diff --git a/remoting/host/security_key/remote_security_key_message_writer_impl.h b/remoting/host/security_key/security_key_message_writer_impl.h
similarity index 43%
rename from remoting/host/security_key/remote_security_key_message_writer_impl.h
rename to remoting/host/security_key/security_key_message_writer_impl.h
index 13d99e407eccc23522f8371b47a6de4b432d0d27..d8008f22f6b9bf3ab21bcbd6d10718c7ed2c4676 100644
--- a/remoting/host/security_key/remote_security_key_message_writer_impl.h
+++ b/remoting/host/security_key/security_key_message_writer_impl.h
@@ -2,29 +2,28 @@
// 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_IMPL_H_
-#define REMOTING_HOST_SECURITY_KEY_REMOTE_SECURITY_KEY_MESSAGE_WRITER_IMPL_H_
+#ifndef REMOTING_HOST_SECURITY_KEY_SECURITY_KEY_MESSAGE_WRITER_IMPL_H_
+#define REMOTING_HOST_SECURITY_KEY_SECURITY_KEY_MESSAGE_WRITER_IMPL_H_
#include <string>
#include "base/files/file.h"
#include "base/macros.h"
-#include "remoting/host/security_key/remote_security_key_message_writer.h"
#include "remoting/host/security_key/security_key_message.h"
+#include "remoting/host/security_key/security_key_message_writer.h"
namespace remoting {
-// Used for sending remote security key messages using a file handle.
-class RemoteSecurityKeyMessageWriterImpl
- : public RemoteSecurityKeyMessageWriter {
+// Used for sending security key messages using a file handle.
+class SecurityKeyMessageWriterImpl : public SecurityKeyMessageWriter {
public:
- explicit RemoteSecurityKeyMessageWriterImpl(base::File output_file);
- ~RemoteSecurityKeyMessageWriterImpl() override;
+ explicit SecurityKeyMessageWriterImpl(base::File output_file);
+ ~SecurityKeyMessageWriterImpl() override;
private:
- // RemoteSecurityKeyMessageWriter interface.
- bool WriteMessage(RemoteSecurityKeyMessageType message_type) override;
- bool WriteMessageWithPayload(RemoteSecurityKeyMessageType message_type,
+ // SecurityKeyMessageWriter interface.
+ bool WriteMessage(SecurityKeyMessageType message_type) override;
+ bool WriteMessageWithPayload(SecurityKeyMessageType message_type,
const std::string& message_payload) override;
// Writes |bytes_to_write| bytes from |message| to |output_stream_|.
@@ -33,9 +32,9 @@ class RemoteSecurityKeyMessageWriterImpl
base::File output_stream_;
bool write_failed_ = false;
- DISALLOW_COPY_AND_ASSIGN(RemoteSecurityKeyMessageWriterImpl);
+ DISALLOW_COPY_AND_ASSIGN(SecurityKeyMessageWriterImpl);
};
} // namespace remoting
-#endif // REMOTING_HOST_SECURITY_KEY_REMOTE_SECURITY_KEY_MESSAGE_WRITER_IMPL_H_
+#endif // REMOTING_HOST_SECURITY_KEY_SECURITY_KEY_MESSAGE_WRITER_IMPL_H_

Powered by Google App Engine
This is Rietveld 408576698