| 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) {
|
|
|