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

Unified Diff: chrome/browser/android/webapk/webapk_installer.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: chrome/browser/android/webapk/webapk_installer.cc
diff --git a/chrome/browser/android/webapk/webapk_installer.cc b/chrome/browser/android/webapk/webapk_installer.cc
index 19affd8fbf29cd105e0d4ed66380853284e575a7..783397b8b1c805d8987a366780fcc2ae93c74689 100644
--- a/chrome/browser/android/webapk/webapk_installer.cc
+++ b/chrome/browser/android/webapk/webapk_installer.cc
@@ -141,8 +141,8 @@ bool WebApkInstaller::StartDownloadedWebApkInstall(
JNIEnv* env,
const base::android::ScopedJavaLocalRef<jstring>& java_file_path,
const base::android::ScopedJavaLocalRef<jstring>& java_package_name) {
- return Java_WebApkInstaller_installAsyncFromNative(env, java_file_path.obj(),
- java_package_name.obj());
+ return Java_WebApkInstaller_installAsyncFromNative(env, java_file_path,
+ java_package_name);
}
void WebApkInstaller::OnURLFetchComplete(const net::URLFetcher* source) {

Powered by Google App Engine
This is Rietveld 408576698