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

Unified Diff: chrome/browser/android/service_tab_launcher.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/service_tab_launcher.cc
diff --git a/chrome/browser/android/service_tab_launcher.cc b/chrome/browser/android/service_tab_launcher.cc
index d8f219bfeb0edb8b3c96078c131784e3d8d27b85..02ae62c9c7de56f74abbc1f5cd0dfb0e8e6900d7 100644
--- a/chrome/browser/android/service_tab_launcher.cc
+++ b/chrome/browser/android/service_tab_launcher.cc
@@ -64,16 +64,10 @@ void ServiceTabLauncher::LaunchTab(content::BrowserContext* browser_context,
new TabLaunchedCallback(callback));
DCHECK_GE(request_id, 1);
- Java_ServiceTabLauncher_launchTab(env,
- GetApplicationContext(),
- request_id,
- browser_context->IsOffTheRecord(),
- url.obj(),
- disposition,
- referrer_url.obj(),
- params.referrer.policy,
- headers.obj(),
- post_data.obj());
+ Java_ServiceTabLauncher_launchTab(env, GetApplicationContext(), request_id,
+ browser_context->IsOffTheRecord(), url,
+ disposition, referrer_url,
+ params.referrer.policy, headers, post_data);
}
void ServiceTabLauncher::OnTabLaunched(int request_id,
« no previous file with comments | « chrome/browser/android/safe_browsing/safe_browsing_api_handler_bridge.cc ('k') | chrome/browser/android/shortcut_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698