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

Unified Diff: remoting/host/security_key/fake_remote_security_key_message_reader.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/fake_remote_security_key_message_reader.h
diff --git a/remoting/host/security_key/fake_remote_security_key_message_reader.h b/remoting/host/security_key/fake_remote_security_key_message_reader.h
deleted file mode 100644
index bfe7c685872aae27cb930a6b4571a37c44e9a9d0..0000000000000000000000000000000000000000
--- a/remoting/host/security_key/fake_remote_security_key_message_reader.h
+++ /dev/null
@@ -1,48 +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_FAKE_REMOTE_SECURITY_KEY_MESSAGE_READER_H_
-#define REMOTING_HOST_SECURITY_KEY_FAKE_REMOTE_SECURITY_KEY_MESSAGE_READER_H_
-
-#include "base/callback.h"
-#include "base/macros.h"
-#include "base/memory/weak_ptr.h"
-#include "remoting/host/security_key/remote_security_key_message_reader.h"
-#include "remoting/host/security_key/security_key_message.h"
-
-namespace remoting {
-
-// Simulates the RemoteSecurityKeyMessageReader and provides access to data
-// members for testing.
-class FakeRemoteSecurityKeyMessageReader
- : public RemoteSecurityKeyMessageReader {
- public:
- FakeRemoteSecurityKeyMessageReader();
- ~FakeRemoteSecurityKeyMessageReader() override;
-
- // RemoteSecurityKeyMessageReader interface.
- void Start(const SecurityKeyMessageCallback& message_callback,
- const base::Closure& error_callback) override;
-
- base::WeakPtr<FakeRemoteSecurityKeyMessageReader> AsWeakPtr();
-
- const SecurityKeyMessageCallback& message_callback() {
- return message_callback_;
- }
-
- const base::Closure& error_callback() { return error_callback_; }
-
- private:
- // Caller-supplied message and error callbacks.
- SecurityKeyMessageCallback message_callback_;
- base::Closure error_callback_;
-
- base::WeakPtrFactory<FakeRemoteSecurityKeyMessageReader> weak_factory_;
-
- DISALLOW_COPY_AND_ASSIGN(FakeRemoteSecurityKeyMessageReader);
-};
-
-} // namespace remoting
-
-#endif // REMOTING_HOST_SECURITY_KEY_FAKE_REMOTE_SECURITY_KEY_MESSAGE_READER_H_

Powered by Google App Engine
This is Rietveld 408576698