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

Unified Diff: chrome/browser/android/blimp/blimp_client_context_factory_android.cc

Issue 2193623002: Make the BlimpClientContextImplAndroid become a 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/public/blimp_client_context.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/android/blimp/blimp_client_context_factory_android.cc
diff --git a/chrome/browser/android/blimp/blimp_client_context_factory_android.cc b/chrome/browser/android/blimp/blimp_client_context_factory_android.cc
index f2f031a908dc61944fb07df0d8b6fa7f7d0bf3f2..3a4e3ef9a6a90e3afc37c701479b3ced744c4e15 100644
--- a/chrome/browser/android/blimp/blimp_client_context_factory_android.cc
+++ b/chrome/browser/android/blimp/blimp_client_context_factory_android.cc
@@ -22,9 +22,8 @@ GetBlimpClientContextForProfile(JNIEnv* env,
const JavaParamRef<jobject>& jprofile) {
Profile* profile = ProfileAndroid::FromProfileAndroid(jprofile);
DCHECK(profile);
- return BlimpClientContextFactory::GetInstance()
- ->GetForBrowserContext(profile)
- ->GetJavaObject();
+ return blimp::client::BlimpClientContext::GetJavaObject(
+ BlimpClientContextFactory::GetInstance()->GetForBrowserContext(profile));
}
bool RegisterBlimpClientContextFactoryJni(JNIEnv* env) {
« no previous file with comments | « blimp/client/public/blimp_client_context.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698