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

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

Issue 2745583008: Refactoring out the chromoting jni runtime class in favor of chromoting client runtime. (Closed)
Patch Set: Missed out on a () Created 3 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/client/jni/chromoting_jni_instance.h
diff --git a/remoting/client/jni/chromoting_jni_instance.h b/remoting/client/jni/chromoting_jni_instance.h
index 2e93981f94933ab010f7c7d9d9e73717f2c72344..4b59501ed6ffb9b36ce4a27934e9bbf152c4b3c0 100644
--- a/remoting/client/jni/chromoting_jni_instance.h
+++ b/remoting/client/jni/chromoting_jni_instance.h
@@ -32,7 +32,7 @@ class VideoRenderer;
} // namespace protocol
class AudioPlayerAndroid;
-class ChromotingJniRuntime;
+class ChromotingClientRuntime;
class JniClient;
class JniPairingSecretFetcher;
@@ -47,8 +47,7 @@ class ChromotingJniInstance
// Initiates a connection with the specified host. Call from the UI thread.
// The instance does not take ownership of |jni_runtime|. To connect with an
// unpaired host, pass in |pairing_id| and |pairing_secret| as empty strings.
- ChromotingJniInstance(ChromotingJniRuntime* jni_runtime,
- base::WeakPtr<JniClient> jni_client,
+ ChromotingJniInstance(base::WeakPtr<JniClient> jni_client,
base::WeakPtr<JniPairingSecretFetcher> secret_fetcher,
std::unique_ptr<protocol::CursorShapeStub> cursor_stub,
std::unique_ptr<protocol::VideoRenderer> video_renderer,
@@ -142,8 +141,8 @@ class ChromotingJniInstance
// Releases the resource in the right order.
void ReleaseResources();
- // Used to obtain task runner references and make calls to Java methods.
- ChromotingJniRuntime* jni_runtime_;
+ // Used to obtain task runner references.
+ ChromotingClientRuntime* runtime_;
base::WeakPtr<JniClient> jni_client_;

Powered by Google App Engine
This is Rietveld 408576698