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

Unified Diff: content/browser/mojo/interface_registrar_android.cc

Issue 2237943002: Remove now-unnecessary .obj() in Java method calls. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@switch-context
Patch Set: Rebase *again* :( 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
Index: content/browser/mojo/interface_registrar_android.cc
diff --git a/content/browser/mojo/interface_registrar_android.cc b/content/browser/mojo/interface_registrar_android.cc
index cba21cf53c16e52f18301e35f6ce441d73896cf9..5d1608747c32d6e896acc36248bf98c3335029a6 100644
--- a/content/browser/mojo/interface_registrar_android.cc
+++ b/content/browser/mojo/interface_registrar_android.cc
@@ -16,7 +16,7 @@ void InterfaceRegistrarAndroid::ExposeInterfacesToRenderer(
InterfaceRegistryAndroid* registry) {
JNIEnv* env = base::android::AttachCurrentThread();
Java_InterfaceRegistrar_exposeInterfacesToRenderer(
- env, registry->GetObj().obj(), base::android::GetApplicationContext());
+ env, registry->GetObj(), base::android::GetApplicationContext());
}
// static
@@ -24,6 +24,6 @@ void InterfaceRegistrarAndroid::ExposeInterfacesToFrame(
InterfaceRegistryAndroid* registry) {
JNIEnv* env = base::android::AttachCurrentThread();
Java_InterfaceRegistrar_exposeInterfacesToFrame(
- env, registry->GetObj().obj(), base::android::GetApplicationContext());
+ env, registry->GetObj(), base::android::GetApplicationContext());
}
} // namespace content
« no previous file with comments | « content/browser/media/session/media_session_delegate_android.cc ('k') | content/browser/renderer_host/ime_adapter_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698