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

Unified Diff: blimp/client/core/android/blimp_client_context_impl_android.h

Issue 2211613002: Add AssignmentSource to BlimpClientContextImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge origin/master Created 4 years, 4 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 | « blimp/client/core/BUILD.gn ('k') | blimp/client/core/android/blimp_client_context_impl_android.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/client/core/android/blimp_client_context_impl_android.h
diff --git a/blimp/client/core/android/blimp_client_context_impl_android.h b/blimp/client/core/android/blimp_client_context_impl_android.h
index e3cf8d40cdf2d5259eaa25f17371052f93c1b051..eb4a3b576ab95c397848c299654782526bbbe4c3 100644
--- a/blimp/client/core/android/blimp_client_context_impl_android.h
+++ b/blimp/client/core/android/blimp_client_context_impl_android.h
@@ -21,8 +21,11 @@ class BlimpClientContextImplAndroid : public BlimpClientContextImpl {
// The |io_thread_task_runner| must be the task runner to use for IO
// operations.
+ // The |file_thread_task_runner| must be the task runner to use for file
+ // operations.
explicit BlimpClientContextImplAndroid(
- scoped_refptr<base::SingleThreadTaskRunner> io_thread_task_runner);
+ scoped_refptr<base::SingleThreadTaskRunner> io_thread_task_runner,
+ scoped_refptr<base::SingleThreadTaskRunner> file_thread_task_runner);
~BlimpClientContextImplAndroid() override;
base::android::ScopedJavaLocalRef<jobject> GetJavaObject();
@@ -31,6 +34,10 @@ class BlimpClientContextImplAndroid : public BlimpClientContextImpl {
JNIEnv* env,
jobject jobj);
+ protected:
+ // BlimpClientContextImpl implementation.
+ GURL GetAssignerURL() override;
+
private:
base::android::ScopedJavaGlobalRef<jobject> java_obj_;
« no previous file with comments | « blimp/client/core/BUILD.gn ('k') | blimp/client/core/android/blimp_client_context_impl_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698