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

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

Issue 2167473003: Revert of Renaming Gnubby and RemoteSecurityKey files/classes/members (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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_ipc_server.h
diff --git a/remoting/host/security_key/security_key_ipc_server.h b/remoting/host/security_key/security_key_ipc_server.h
deleted file mode 100644
index be7d99d8fbcced8af4bb56df07bbfce89da6be2c..0000000000000000000000000000000000000000
--- a/remoting/host/security_key/security_key_ipc_server.h
+++ /dev/null
@@ -1,61 +0,0 @@
-// 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_SECURITY_KEY_IPC_SERVER_H_
-#define REMOTING_HOST_SECURITY_KEY_SECURITY_KEY_IPC_SERVER_H_
-
-#include <cstdint>
-#include <memory>
-#include <string>
-
-#include "base/callback_forward.h"
-#include "base/time/time.h"
-#include "remoting/host/security_key/security_key_auth_handler.h"
-
-namespace remoting {
-
-class SecurityKeyIpcServerFactory;
-
-// Responsible for handing the server end of the IPC channel between the
-// network process (server) and the remote_security_key process (client).
-class SecurityKeyIpcServer {
- public:
- virtual ~SecurityKeyIpcServer() {}
-
- // Creates a new SecurityKeyIpcServer instance.
- static std::unique_ptr<SecurityKeyIpcServer> Create(
- int connection_id,
- uint32_t peer_session_id,
- base::TimeDelta initial_connect_timeout,
- const SecurityKeyAuthHandler::SendMessageCallback& message_callback,
- const base::Closure& done_callback);
-
- // Used to set a Factory to generate fake/mock SecurityKeyIpcServer
- // instances for testing.
- static void SetFactoryForTest(SecurityKeyIpcServerFactory* factory);
-
- // Creates and starts listening on an IPC channel with the given name.
- virtual bool CreateChannel(const std::string& channel_name,
- base::TimeDelta request_timeout) = 0;
-
- // Sends a security key response IPC message via the IPC channel.
- virtual bool SendResponse(const std::string& message_data) = 0;
-};
-
-// Used to allow for creating Fake/Mock SecurityKeyIpcServer for testing.
-class SecurityKeyIpcServerFactory {
- public:
- virtual ~SecurityKeyIpcServerFactory() {}
-
- virtual std::unique_ptr<SecurityKeyIpcServer> Create(
- int connection_id,
- uint32_t peer_session_id,
- base::TimeDelta connect_timeout,
- const SecurityKeyAuthHandler::SendMessageCallback& message_callback,
- const base::Closure& done_callback) = 0;
-};
-
-} // namespace remoting
-
-#endif // REMOTING_HOST_SECURITY_KEY_SECURITY_KEY_IPC_SERVER_H_
« no previous file with comments | « remoting/host/security_key/security_key_ipc_constants.cc ('k') | remoting/host/security_key/security_key_ipc_server.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698