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

Issue 1312153003: jni_generator: Pass object parameters as JavaParamRef. (Closed)

Created:
5 years, 3 months ago by Torne
Modified:
5 years, 3 months ago
CC:
chromium-reviews
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

jni_generator: Pass object parameters as JavaParamRef. Pass all object parameters to JNI functions in JavaParamRef<> wrappers. This new type behaves like ScopedJavaLocalRef, but does not free the local reference when it goes out of scope, since the JVM does not allow method parameters to be freed and this causes a warning. This CL only changes the implementation of the generator and the signatures of JNI functions which take JavaParamRef arguments; the minimum required to allow it to compile and work. An implicit cast from JavaParamRef<T> to T is defined, to allow function bodies to remain unaltered. These will be migrated over future CLs and the cast removed. BUG=506850 Committed: https://crrev.com/89cc5d913e36029273a916f27d154967af3900d6 Cr-Commit-Position: refs/heads/master@{#347379}

Patch Set 1 #

Total comments: 6

Patch Set 2 : Rewrite function signatures with script #

Patch Set 3 : Rewrite function signatures in chromecast/ #

Patch Set 4 : Address Ross's comments #

Patch Set 5 : Rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1761 lines, -1138 lines) Patch
M android_webview/native/android_protocol_handler.cc View 1 2 chunks +9 lines, -6 lines 0 comments Download
M android_webview/native/aw_contents.cc View 1 2 3 4 4 chunks +16 lines, -10 lines 0 comments Download
M android_webview/native/aw_contents_statics.cc View 1 3 chunks +20 lines, -7 lines 0 comments Download
M android_webview/native/aw_dev_tools_server.cc View 1 1 chunk +5 lines, -3 lines 0 comments Download
M android_webview/native/aw_form_database.cc View 1 1 chunk +2 lines, -2 lines 0 comments Download
M android_webview/native/aw_message_port_service_impl.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M android_webview/native/aw_quota_manager_bridge_impl.cc View 1 1 chunk +2 lines, -1 line 0 comments Download
M android_webview/native/aw_settings.cc View 1 1 chunk +5 lines, -4 lines 0 comments Download
M android_webview/native/aw_web_contents_delegate.cc View 1 1 chunk +7 lines, -4 lines 0 comments Download
M android_webview/native/cookie_manager.cc View 1 4 chunks +31 lines, -21 lines 0 comments Download
M base/android/animation_frame_time_histogram.cc View 1 1 chunk +3 lines, -3 lines 0 comments Download
M base/android/application_status_listener.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M base/android/command_line_android.cc View 1 2 chunks +19 lines, -10 lines 0 comments Download
M base/android/cpu_features.cc View 1 1 chunk +2 lines, -2 lines 0 comments Download
M base/android/field_trial_list.cc View 1 1 chunk +7 lines, -4 lines 0 comments Download
M base/android/important_file_writer_android.cc View 1 1 chunk +3 lines, -3 lines 0 comments Download
M base/android/jni_generator/golden_sample_for_tests_jni.h View 7 chunks +26 lines, -19 lines 0 comments Download
M base/android/jni_generator/jni_generator.py View 1 2 3 11 chunks +64 lines, -17 lines 0 comments Download
M base/android/jni_generator/jni_generator_helper.h View 1 chunk +1 line, -0 lines 0 comments Download
M base/android/jni_generator/sample_for_tests.cc View 1 1 chunk +11 lines, -6 lines 0 comments Download
M base/android/jni_generator/testEagerCalledByNativesOption.golden View 1 chunk +1 line, -1 line 0 comments Download
M base/android/jni_generator/testInnerClassNatives.golden View 1 chunk +2 lines, -2 lines 0 comments Download
M base/android/jni_generator/testInnerClassNativesBothInnerAndOuter.golden View 1 chunk +4 lines, -4 lines 0 comments Download
M base/android/jni_generator/testInnerClassNativesMultiple.golden View 1 chunk +4 lines, -4 lines 0 comments Download
M base/android/jni_generator/testJNIInitNativeNameOption.golden View 1 chunk +1 line, -1 line 0 comments Download
M base/android/jni_generator/testJarJarRemapping.golden View 1 chunk +16 lines, -12 lines 0 comments Download
M base/android/jni_generator/testMultipleJNIAdditionalImport.golden View 1 chunk +6 lines, -4 lines 0 comments Download
M base/android/jni_generator/testNativeExportsOption.golden View 2 chunks +6 lines, -6 lines 0 comments Download
M base/android/jni_generator/testNativeExportsOptionalOption.golden View 2 chunks +6 lines, -6 lines 0 comments Download
M base/android/jni_generator/testNatives.golden View 6 chunks +52 lines, -34 lines 0 comments Download
M base/android/jni_generator/testNativesLong.golden View 1 chunk +1 line, -1 line 0 comments Download
M base/android/jni_generator/testSingleJNIAdditionalImport.golden View 1 chunk +4 lines, -3 lines 0 comments Download
M base/android/library_loader/library_loader_hooks.cc View 1 5 chunks +14 lines, -8 lines 0 comments Download
M base/android/memory_pressure_listener_android.cc View 1 1 chunk +3 lines, -2 lines 0 comments Download
M base/android/path_service_android.cc View 1 1 chunk +4 lines, -1 line 0 comments Download
M base/android/record_histogram.cc View 1 2 3 4 6 chunks +27 lines, -25 lines 0 comments Download
M base/android/record_user_action.cc View 1 1 chunk +3 lines, -1 line 0 comments Download
M base/android/scoped_java_ref.h View 2 chunks +26 lines, -0 lines 0 comments Download
M base/android/trace_event_binding.cc View 1 4 chunks +26 lines, -13 lines 0 comments Download
M base/message_loop/message_pump_android.cc View 1 1 chunk +4 lines, -2 lines 0 comments Download
M base/power_monitor/power_monitor_device_source_android.cc View 1 1 chunk +3 lines, -3 lines 0 comments Download
M chrome/browser/after_startup_task_utils_android.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/android/accessibility/font_size_prefs_android.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M chrome/browser/android/appmenu/app_menu_drag_helper.cc View 1 1 chunk +3 lines, -1 line 0 comments Download
M chrome/browser/android/banners/app_banner_manager_android.cc View 1 1 chunk +8 lines, -5 lines 0 comments Download
M chrome/browser/android/bookmarks/bookmarks_bridge.cc View 1 1 chunk +6 lines, -3 lines 0 comments Download
M chrome/browser/android/bookmarks/edit_bookmark_helper.cc View 1 1 chunk +3 lines, -3 lines 0 comments Download
M chrome/browser/android/bookmarks/partner_bookmarks_reader.cc View 1 2 chunks +3 lines, -2 lines 0 comments Download
M chrome/browser/android/bottombar/contextualsearch/contextual_search_panel.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/android/chrome_application.cc View 1 2 chunks +8 lines, -5 lines 0 comments Download
M chrome/browser/android/chrome_web_contents_delegate_android.cc View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M chrome/browser/android/compositor/compositor_view.cc View 1 1 chunk +3 lines, -3 lines 0 comments Download
M chrome/browser/android/compositor/layer_title_cache.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/android/compositor/scene_layer/contextual_search_scene_layer.cc View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/android/compositor/scene_layer/reader_mode_scene_layer.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/android/compositor/scene_layer/scene_layer.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/android/compositor/scene_layer/static_tab_scene_layer.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/android/compositor/scene_layer/tab_list_scene_layer.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/android/compositor/scene_layer/tab_strip_scene_layer.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/android/compositor/tab_content_manager.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/android/contextualsearch/contextual_search_manager.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/android/contextualsearch/contextual_search_tab_helper.cc View 1 1 chunk +3 lines, -1 line 0 comments Download
M chrome/browser/android/cookies/cookies_fetcher.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/android/dev_tools_server.cc View 1 1 chunk +9 lines, -6 lines 0 comments Download
M chrome/browser/android/document/document_web_contents_delegate.cc View 1 1 chunk +1 line, -2 lines 0 comments Download
M chrome/browser/android/download/chrome_download_delegate.cc View 1 3 chunks +21 lines, -15 lines 0 comments Download
M chrome/browser/android/favicon_helper.cc View 1 2 chunks +3 lines, -3 lines 0 comments Download
M chrome/browser/android/feature_utilities.cc View 1 1 chunk +2 lines, -3 lines 0 comments Download
M chrome/browser/android/feedback/connectivity_checker.cc View 1 2 chunks +7 lines, -5 lines 0 comments Download
M chrome/browser/android/find_in_page/find_in_page_bridge.cc View 1 2 3 4 1 chunk +3 lines, -1 line 0 comments Download
M chrome/browser/android/foreign_session_helper.cc View 1 1 chunk +3 lines, -1 line 0 comments Download
M chrome/browser/android/fullscreen/fullscreen_infobar_delegate.cc View 1 2 3 4 1 chunk +3 lines, -2 lines 0 comments Download
M chrome/browser/android/history_report/history_report_jni_bridge.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/android/java_exception_reporter.cc View 1 1 chunk +3 lines, -1 line 0 comments Download
M chrome/browser/android/large_icon_bridge.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/android/logo_bridge.cc View 1 1 chunk +3 lines, -1 line 0 comments Download
M chrome/browser/android/metrics/launch_metrics.cc View 1 1 chunk +6 lines, -2 lines 0 comments Download
M chrome/browser/android/metrics/uma_session_stats.cc View 1 6 chunks +23 lines, -13 lines 0 comments Download
M chrome/browser/android/metrics/variations_session.cc View 1 2 3 4 1 chunk +4 lines, -3 lines 0 comments Download
M chrome/browser/android/most_visited_sites.cc View 1 1 chunk +3 lines, -1 line 0 comments Download
M chrome/browser/android/new_tab_page_prefs.cc View 1 1 chunk +3 lines, -1 line 0 comments Download
M chrome/browser/android/offline_pages/offline_page_bridge.cc View 1 2 chunks +5 lines, -2 lines 0 comments Download
M chrome/browser/android/omnibox/answers_image_bridge.cc View 1 2 chunks +6 lines, -6 lines 0 comments Download
M chrome/browser/android/omnibox/autocomplete_controller_android.cc View 1 3 chunks +9 lines, -5 lines 0 comments Download
M chrome/browser/android/omnibox/omnibox_prerender.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/android/password_ui_view_android.cc View 1 2 chunks +8 lines, -6 lines 0 comments Download
M chrome/browser/android/precache/precache_launcher.cc View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
M chrome/browser/android/preferences/autofill/autofill_profile_bridge.cc View 1 2 chunks +13 lines, -11 lines 0 comments Download
M chrome/browser/android/preferences/pref_service_bridge.cc View 1 2 3 4 25 chunks +227 lines, -116 lines 0 comments Download
M chrome/browser/android/preferences/website_preference_bridge.cc View 1 14 chunks +112 lines, -92 lines 0 comments Download
M chrome/browser/android/profiles/profile_downloader_android.cc View 1 4 chunks +14 lines, -14 lines 0 comments Download
M chrome/browser/android/provider/chrome_browser_provider.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/android/rappor/rappor_service_bridge.cc View 1 1 chunk +3 lines, -3 lines 0 comments Download
M chrome/browser/android/recently_closed_tabs_bridge.cc View 1 1 chunk +3 lines, -1 line 0 comments Download
M chrome/browser/android/rlz/revenue_stats.cc View 1 1 chunk +6 lines, -2 lines 0 comments Download
M chrome/browser/android/signin/account_management_screen_helper.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/android/signin/signin_manager_android.cc View 1 1 chunk +5 lines, -4 lines 0 comments Download
M chrome/browser/android/tab/thumbnail_tab_helper_android.cc View 1 3 chunks +9 lines, -7 lines 0 comments Download
M chrome/browser/android/tab_android.cc View 1 2 3 4 2 chunks +3 lines, -2 lines 0 comments Download
M chrome/browser/android/tab_state.cc View 1 5 chunks +18 lines, -15 lines 0 comments Download
M chrome/browser/android/url_utilities.cc View 1 3 chunks +16 lines, -11 lines 0 comments Download
M chrome/browser/android/warmup_manager.cc View 1 1 chunk +4 lines, -3 lines 0 comments Download
M chrome/browser/android/web_contents_factory.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/android/webapps/add_to_homescreen_dialog_helper.cc View 1 1 chunk +3 lines, -1 line 0 comments Download
M chrome/browser/autofill/android/personal_data_manager_android.cc View 1 1 chunk +20 lines, -10 lines 0 comments Download
M chrome/browser/dom_distiller/dom_distiller_service_factory_android.cc View 1 1 chunk +4 lines, -3 lines 0 comments Download
M chrome/browser/dom_distiller/tab_utils_android.cc View 1 2 chunks +7 lines, -7 lines 0 comments Download
M chrome/browser/invalidation/invalidation_service_factory_android.cc View 1 1 chunk +6 lines, -5 lines 0 comments Download
M chrome/browser/media/android/remote/record_cast_action.cc View 1 3 chunks +10 lines, -7 lines 0 comments Download
M chrome/browser/net/spdyproxy/data_reduction_proxy_settings_android.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/notifications/notification_ui_manager_android.cc View 1 1 chunk +2 lines, -1 line 0 comments Download
M chrome/browser/prerender/external_prerender_handler_android.cc View 1 2 chunks +5 lines, -5 lines 0 comments Download
M chrome/browser/profiles/profile_android.cc View 1 1 chunk +3 lines, -1 line 0 comments Download
M chrome/browser/search_engines/template_url_service_android.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/signin/oauth2_token_service_delegate_android.cc View 1 2 3 4 2 chunks +6 lines, -5 lines 0 comments Download
M chrome/browser/ssl/connection_security_android.cc View 1 1 chunk +4 lines, -3 lines 0 comments Download
M chrome/browser/supervised_user/child_accounts/child_account_service_android.cc View 1 1 chunk +6 lines, -3 lines 0 comments Download
M chrome/browser/sync/profile_sync_service_android.cc View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/ui/android/certificate_viewer_android.cc View 1 1 chunk +36 lines, -19 lines 0 comments Download
M chrome/browser/ui/android/connection_info_popup_android.cc View 1 2 chunks +7 lines, -5 lines 0 comments Download
M chrome/browser/ui/android/infobars/data_reduction_proxy_infobar.cc View 1 1 chunk +4 lines, -2 lines 0 comments Download
M chrome/browser/ui/android/infobars/infobar_container_android.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/ui/android/javascript_app_modal_dialog_android.cc View 1 1 chunk +3 lines, -1 line 0 comments Download
M chrome/browser/ui/android/omnibox/omnibox_url_emphasizer.cc View 1 1 chunk +5 lines, -4 lines 0 comments Download
M chrome/browser/ui/android/omnibox/omnibox_view_util.cc View 1 1 chunk +4 lines, -3 lines 0 comments Download
M chrome/browser/ui/android/ssl_client_certificate_request.cc View 1 2 chunks +6 lines, -4 lines 0 comments Download
M chrome/browser/ui/android/tab_model/single_tab_model.cc View 1 1 chunk +4 lines, -3 lines 0 comments Download
M chrome/browser/ui/android/tab_model/tab_model_jni_bridge.cc View 1 5 chunks +7 lines, -5 lines 0 comments Download
M chrome/browser/ui/android/toolbar/toolbar_model_android.cc View 1 2 chunks +5 lines, -3 lines 0 comments Download
M chrome/browser/ui/android/website_settings_popup_android.cc View 1 1 chunk +3 lines, -3 lines 0 comments Download
M chromecast/android/cast_metrics_helper_android.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M chromecast/base/chromecast_config_android.cc View 1 2 1 chunk +3 lines, -1 line 0 comments Download
M chromecast/browser/android/cast_window_manager.cc View 1 2 3 chunks +13 lines, -5 lines 0 comments Download
M components/cronet/android/chromium_url_request.cc View 1 20 chunks +49 lines, -39 lines 0 comments Download
M components/cronet/android/chromium_url_request_context.cc View 1 6 chunks +17 lines, -14 lines 0 comments Download
M components/cronet/android/cronet_histogram_manager.cc View 1 1 chunk +5 lines, -3 lines 0 comments Download
M components/cronet/android/cronet_library_loader.cc View 1 2 chunks +6 lines, -4 lines 0 comments Download
M components/cronet/android/cronet_upload_data_stream_adapter.cc View 1 3 chunks +17 lines, -13 lines 0 comments Download
M components/cronet/android/cronet_url_request_adapter.cc View 1 1 chunk +2 lines, -2 lines 0 comments Download
M components/cronet/android/cronet_url_request_context_adapter.cc View 1 2 3 4 2 chunks +5 lines, -3 lines 0 comments Download
M components/cronet/android/test/mock_url_request_job_factory.cc View 1 1 chunk +14 lines, -11 lines 0 comments Download
M components/cronet/android/test/native_test_server.cc View 1 4 chunks +31 lines, -17 lines 0 comments Download
M components/cronet/android/test/network_change_notifier_util.cc View 1 1 chunk +3 lines, -1 line 0 comments Download
M components/cronet/android/test/quic_test_server.cc View 1 2 chunks +8 lines, -5 lines 0 comments Download
M components/cronet/android/test/sdch_test_util.cc View 1 2 chunks +4 lines, -4 lines 0 comments Download
M components/cronet/android/test/test_upload_data_stream_handler.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M components/dom_distiller/content/browser/distillable_page_utils_android.cc View 1 1 chunk +3 lines, -3 lines 0 comments Download
M components/dom_distiller/core/distilled_page_prefs_android.cc View 1 2 chunks +4 lines, -2 lines 0 comments Download
M components/dom_distiller/core/url_utils_android.cc View 1 3 chunks +23 lines, -14 lines 0 comments Download
M components/safe_json/json_sanitizer_android.cc View 1 1 chunk +8 lines, -2 lines 0 comments Download
M components/service_tab_launcher/browser/android/service_tab_launcher.cc View 1 1 chunk +4 lines, -1 line 0 comments Download
M components/signin/core/browser/child_account_info_fetcher_android.cc View 1 1 chunk +2 lines, -2 lines 0 comments Download
M components/variations/android/variations_associated_data_android.cc View 1 1 chunk +5 lines, -4 lines 0 comments Download
M content/app/android/child_process_service.cc View 1 3 chunks +5 lines, -5 lines 0 comments Download
M content/app/android/content_main.cc View 1 1 chunk +4 lines, -2 lines 0 comments Download
M content/browser/android/browser_startup_controller.cc View 1 3 chunks +9 lines, -6 lines 0 comments Download
M content/browser/android/child_process_launcher_android.cc View 1 3 chunks +8 lines, -5 lines 0 comments Download
M content/browser/android/content_readback_handler.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M content/browser/android/content_video_view.cc View 1 1 chunk +3 lines, -2 lines 0 comments Download
M content/browser/android/content_view_core_impl.cc View 1 2 chunks +8 lines, -6 lines 0 comments Download
M content/browser/android/content_view_render_view.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M content/browser/android/content_view_statics.cc View 1 2 chunks +5 lines, -4 lines 0 comments Download
M content/browser/android/download_controller_android_impl.cc View 1 1 chunk +5 lines, -3 lines 0 comments Download
M content/browser/android/interstitial_page_delegate_android.cc View 1 1 chunk +3 lines, -1 line 0 comments Download
M content/browser/android/load_url_params.cc View 1 1 chunk +3 lines, -1 line 0 comments Download
M content/browser/android/tracing_controller_android.cc View 1 2 chunks +4 lines, -3 lines 0 comments Download
M content/browser/android/web_contents_observer_proxy.cc View 1 1 chunk +3 lines, -1 line 0 comments Download
M content/browser/gamepad/gamepad_platform_data_fetcher_android.cc View 1 1 chunk +4 lines, -4 lines 0 comments Download
M content/browser/geolocation/location_api_adapter_android.cc View 1 1 chunk +13 lines, -6 lines 0 comments Download
M content/browser/media/android/media_drm_credential_manager.cc View 1 1 chunk +2 lines, -2 lines 0 comments Download
M content/browser/renderer_host/ime_adapter_android.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M content/browser/web_contents/web_contents_android.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M content/shell/android/linker_test_apk/chromium_linker_test_linker_tests.cc View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
M content/shell/android/shell_manager.cc View 1 1 chunk +6 lines, -2 lines 0 comments Download
M content/shell/browser/shell_android.cc View 1 1 chunk +3 lines, -1 line 0 comments Download
M content/shell/browser/shell_mojo_test_utils_android.cc View 1 2 chunks +7 lines, -4 lines 0 comments Download
M mandoline/app/android/mandoline_activity.cc View 1 1 chunk +3 lines, -1 line 0 comments Download
M mojo/android/javatests/mojo_test_case.cc View 1 1 chunk +8 lines, -5 lines 0 comments Download
M mojo/android/javatests/validation_test_util.cc View 1 1 chunk +4 lines, -3 lines 0 comments Download
M mojo/android/system/base_run_loop.cc View 1 3 chunks +16 lines, -7 lines 0 comments Download
M mojo/android/system/core_impl.cc View 1 16 chunks +79 lines, -64 lines 0 comments Download
M mojo/runner/android/bootstrap.cc View 1 1 chunk +3 lines, -3 lines 0 comments Download
M mojo/runner/android/main.cc View 1 2 3 4 3 chunks +10 lines, -8 lines 0 comments Download
M net/android/gurl_utils.cc View 1 1 chunk +6 lines, -2 lines 0 comments Download
M net/android/network_change_notifier_delegate_android.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M net/cert/x509_util_android.cc View 1 2 chunks +5 lines, -3 lines 0 comments Download
M net/test/embedded_test_server/android/embedded_test_server_android.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M remoting/client/jni/chromoting_jni_runtime.cc View 1 2 3 4 6 chunks +42 lines, -33 lines 0 comments Download
M remoting/client/jni/jni_client.cc View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M sync/android/model_type_helper.cc View 1 1 chunk +4 lines, -2 lines 0 comments Download
M sync/test/fake_server/android/fake_server_helper_android.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M testing/android/native_test/native_test_launcher.cc View 1 1 chunk +5 lines, -5 lines 0 comments Download
M ui/android/window_android.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M ui/base/l10n/l10n_util_android.cc View 1 2 chunks +4 lines, -3 lines 0 comments Download
M ui/gfx/android/shared_device_display_info.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M ui/gfx/android/view_configuration.cc View 1 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 17 (5 generated)
Torne
PS#1 contains the "interesting" change: introducing JavaParamRef and updating the JNI generator to use it. ...
5 years, 3 months ago (2015-08-28 11:21:26 UTC) #2
Torne
D'oh. More references in files that are only build with chromecast=1. :(
5 years, 3 months ago (2015-08-28 11:46:18 UTC) #3
rmcilroy
Some suggestions for the jni_generator code. https://codereview.chromium.org/1312153003/diff/1/base/android/jni_generator/jni_generator.py File base/android/jni_generator/jni_generator.py (right): https://codereview.chromium.org/1312153003/diff/1/base/android/jni_generator/jni_generator.py#newcode1016 base/android/jni_generator/jni_generator.py:1016: def GetJNIFirstParamForDeclaration(self, native): ...
5 years, 3 months ago (2015-08-28 12:16:04 UTC) #4
Torne
https://codereview.chromium.org/1312153003/diff/1/base/android/jni_generator/jni_generator.py File base/android/jni_generator/jni_generator.py (right): https://codereview.chromium.org/1312153003/diff/1/base/android/jni_generator/jni_generator.py#newcode1016 base/android/jni_generator/jni_generator.py:1016: def GetJNIFirstParamForDeclaration(self, native): On 2015/08/28 12:16:04, rmcilroy wrote: > ...
5 years, 3 months ago (2015-08-28 12:36:18 UTC) #5
rmcilroy
lgtm, thanks!
5 years, 3 months ago (2015-08-28 14:09:50 UTC) #6
Torne
Ben, would you be able to stamp this as a toplevel OWNER? The changes outside ...
5 years, 3 months ago (2015-08-28 14:13:00 UTC) #8
Torne
+cpu - any chance of a toplevel OWNER approval? This is becoming very hard to ...
5 years, 3 months ago (2015-09-03 14:29:52 UTC) #10
Torne
argh linux_android_rel_ng failure seems to be some issue with the recipe; will try to find ...
5 years, 3 months ago (2015-09-03 16:04:40 UTC) #11
cpu_(ooo_6.6-7.5)
rubberstamp lgtm on the mechanical changes.
5 years, 3 months ago (2015-09-03 21:17:51 UTC) #12
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1312153003/80001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1312153003/80001
5 years, 3 months ago (2015-09-04 09:41:35 UTC) #15
commit-bot: I haz the power
Committed patchset #5 (id:80001)
5 years, 3 months ago (2015-09-04 11:16:42 UTC) #16
commit-bot: I haz the power
5 years, 3 months ago (2015-09-04 11:17:16 UTC) #17
Message was sent while issue was closed.
Patchset 5 (id:??) landed as
https://crrev.com/89cc5d913e36029273a916f27d154967af3900d6
Cr-Commit-Position: refs/heads/master@{#347379}

Powered by Google App Engine
This is Rietveld 408576698