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

Unified Diff: remoting/client/jni/jni_pairing_secret_fetcher.h

Issue 2007123003: [Android Client] Break down multi-threaded classes by thread (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename JniSecretFetcher to JniPairingSecretFetcher Created 4 years, 7 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
« no previous file with comments | « remoting/client/jni/jni_frame_consumer.cc ('k') | remoting/client/jni/jni_pairing_secret_fetcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/jni/jni_pairing_secret_fetcher.h
diff --git a/remoting/client/jni/jni_pairing_secret_fetcher.h b/remoting/client/jni/jni_pairing_secret_fetcher.h
new file mode 100644
index 0000000000000000000000000000000000000000..6b240a90c47bcc3666a140d6d15eacea57bf5ad1
--- /dev/null
+++ b/remoting/client/jni/jni_pairing_secret_fetcher.h
@@ -0,0 +1,57 @@
+// 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_CLIENT_JNI_JNI_PAIRING_SECRET_FETCHER_H_
+#define REMOTING_CLIENT_JNI_JNI_PAIRING_SECRET_FETCHER_H_
+
+#include "base/macros.h"
+#include "base/memory/weak_ptr.h"
+#include "remoting/protocol/client_authentication_config.h"
+
+namespace remoting {
+
+class ChromotingJniRuntime;
+class JniClient;
+
+// This class fetches the pairing secret on the UI thread. It must be deleted
+// on UI.
+class JniPairingSecretFetcher {
+ public:
+ JniPairingSecretFetcher(ChromotingJniRuntime* runtime,
+ base::WeakPtr<JniClient> client,
+ const std::string& host_id);
+ virtual ~JniPairingSecretFetcher();
+
+ // Called on UI thread. Notifies the user interface that the user needs to
+ // enter a PIN. The current authentication attempt is put on hold until
+ // |callback| is invoked. |callback| will be run on the network thread.
+ void FetchSecret(bool pairable,
+ const protocol::SecretFetchedCallback& callback);
+
+ // Provides the user's PIN and resumes the host authentication attempt. Call
+ // on the UI thread once the user has finished entering this PIN into the UI,
+ // but only after the UI has been asked to provide a PIN (via FetchSecret()).
+ void ProvideSecret(const std::string& pin);
+
+ // Get weak pointer to be used on the UI thread.
+ base::WeakPtr<JniPairingSecretFetcher> GetWeakPtr();
+
+ private:
+ ChromotingJniRuntime* jni_runtime_;
+ base::WeakPtr<JniClient> jni_client_;
+
+ std::string host_id_;
+
+ // Pass this the user's PIN once we have it. To be assigned and accessed on
+ // the UI thread, but must be posted to the network thread to call it.
+ protocol::SecretFetchedCallback callback_;
+
+ base::WeakPtrFactory<JniPairingSecretFetcher> weak_factory_;
+
+ DISALLOW_COPY_AND_ASSIGN(JniPairingSecretFetcher);
+};
+
+} // namespace remoting
+
+#endif // REMOTING_CLIENT_JNI_JNI_PAIRING_SECRET_FETCHER_H_
« no previous file with comments | « remoting/client/jni/jni_frame_consumer.cc ('k') | remoting/client/jni/jni_pairing_secret_fetcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698