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

Unified Diff: ui/shell_dialogs/select_file_dialog_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
« no previous file with comments | « ui/platform_window/android/platform_window_android.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/shell_dialogs/select_file_dialog_android.cc
diff --git a/ui/shell_dialogs/select_file_dialog_android.cc b/ui/shell_dialogs/select_file_dialog_android.cc
index c4af2495c365125eb4c66c030b3156766ab9fe42..30c557d719a0fff4ed308e45ad7b85093292aea9 100644
--- a/ui/shell_dialogs/select_file_dialog_android.cc
+++ b/ui/shell_dialogs/select_file_dialog_android.cc
@@ -120,11 +120,9 @@ void SelectFileDialogImpl::SelectFileImpl(
bool accept_multiple_files = SelectFileDialog::SELECT_OPEN_MULTI_FILE == type;
- Java_SelectFileDialog_selectFile(env, java_object_.obj(),
- accept_types_java.obj(),
- accept_types.second,
- accept_multiple_files,
- owning_window->GetJavaObject().obj());
+ Java_SelectFileDialog_selectFile(env, java_object_, accept_types_java,
+ accept_types.second, accept_multiple_files,
+ owning_window->GetJavaObject());
}
bool SelectFileDialogImpl::RegisterSelectFileDialog(JNIEnv* env) {
« no previous file with comments | « ui/platform_window/android/platform_window_android.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698