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

Issue 2884763002: Automated IWYU fix for TaskRunner includes. (Closed)

Created:
3 years, 7 months ago by gab
Modified:
3 years, 7 months ago
Reviewers:
fdoray
CC:
chromium-reviews, ios-reviews+chrome_chromium.org, sadrul, jam, johnme+watch_chromium.org, dcheng, piman+watch_chromium.org, mfoltz+watch_chromium.org, vakh+watch_chromium.org, melevin+watch_chromium.org, toyoshim+midi_chromium.org, sebsg+autofillwatch_chromium.org, dglazkov+blink, einbinder+watch-test-runner_chromium.org, kalyank, huangml+watch_chromium.org, gogerald+paymentswatch_chromium.org, mlamouri+watch-content_chromium.org, subresource-filter-reviews_chromium.org, csharp+watch_chromium.org, ntp-dev+reviews_chromium.org, joenotcharles+watch_chromium.org, yamaguchi+watch_chromium.org, petewil+watch_chromium.org, blink-reviews, Ian Vollick, jochen+watch_chromium.org, rjkroege, mlamouri+watch-test-runner_chromium.org, tfarina, avayvod+watch_chromium.org, chili+watch_chromium.org, ortuno+watch_chromium.org, David Black, mac-reviews_chromium.org, mahmadi+paymentswatch_chromium.org, estade+watch_chromium.org, isheriff+watch_chromium.org, pfeldman, msramek+watch_chromium.org, viettrungluu+watch_chromium.org, baxley+watch_chromium.org, scheib+watch_chromium.org, lhchavez+watch_chromium.org, fukino+watch_chromium.org, kinuko+watch, Aaron Boodman, lcwu+watch_chromium.org, achuith+watch_chromium.org, halliwell+watch_chromium.org, vabr+watchlistautofill_chromium.org, chromium-apps-reviews_chromium.org, android-webview-reviews_chromium.org, alemate+watch_chromium.org, cmumford, ozone-reviews_chromium.org, nhiroki, timvolodine, asvitkine+watch_chromium.org, rouslan+payments_chromium.org, Lei Zhang, pkl (ping after 24h if needed), Eugene But (OOO till 7-30), dtapuska+chromiumwatch_chromium.org, sebsg+paymentswatch_chromium.org, dewittj+watch_chromium.org, eroman, mmenke, samarth+watch_chromium.org, kmadhusu+watch_chromium.org, ftirelo+watch_chromium.org, yusukes+watch_chromium.org, zea+watch_chromium.org, alito+watch_chromium.org, hidehiko+watch_chromium.org, oka+watch_chromium.org, browser-components-watch_chromium.org, yzshen+watch_chromium.org, tracing+reviews_chromium.org, net-reviews_chromium.org, gcasto+watchlist_chromium.org, mlamouri+watch-media_chromium.org, miu+watch_chromium.org, extensions-reviews_chromium.org, ios-reviews_chromium.org, fgorski+watch_chromium.org, vmpstr+watch_chromium.org, abarth-chromium, posciak+watch_chromium.org, darin-cc_chromium.org, jkarlin+watch_chromium.org, devtools-reviews_chromium.org, xjz+watch_chromium.org, blink-worker-reviews_chromium.org, imcheng+watch_chromium.org, rouslan+autofill_chromium.org, jasonroberts+watch_google.com, jfweitz+watch_chromium.org, oshima+watch_chromium.org, alokp+watch_chromium.org, sync-reviews_chromium.org, chfremer+watch_chromium.org, David Trainor- moved to gerrit, shalamov, wfh+watch_chromium.org, liaoyuke+watch_chromium.org, donnd+watch_chromium.org, tommycli, victorhsieh+watch_chromium.org, noyau+watch_chromium.org, kinuko+fileapi, davemoore+watch_chromium.org, erickung+watch_chromium.org, skanuj+watch_chromium.org, qsr+mojo_chromium.org, tzik, jered+watch_chromium.org, rogerm+autofillwatch_chromium.org, bnc+watch_chromium.org, apacible+watch_chromium.org, marq+watch_chromium.org, markusheintz_, stevenjb+watch_chromium.org, dimich+watch_chromium.org, cbentzel+watch_chromium.org, grt+watch_chromium.org, ios-reviews+web_chromium.org, jbauman+watch_chromium.org, chromoting-reviews_chromium.org, wanming.lin, blink-reviews-api_chromium.org, cc-bugs_chromium.org, vabr+watchlistpasswordmanager_chromium.org, Peter Beverloo, feature-media-reviews_chromium.org, johnchen+watch_chromium.org, jsbell+idb_chromium.org, danakj+watch_chromium.org, elijahtaylor+arcwatch_chromium.org, romax+watch_chromium.org, mathp+autofillwatch_chromium.org, darin (slow to review), scheduler-bugs_chromium.org, Mikhail
Target Ref:
refs/heads/master
Project:
chromium
Visibility:
Public.

Description

Automated IWYU fix for TaskRunner includes. Pre-requisite to suppress message_loop.h from run_loop.h (issue 703346). A similar include fix for message_loop.h was done in r471412 but some targets are the removal as it looks like they properly didn't need message_loop.h but were relying on it to get task runner includes... The reasoning for this is the same as was once done in https://codereview.chromium.org/2443103003 (it was then done only on targets that failed to compile instead of via script): scoped_refptr<Foo> requires full type of Foo to be defined not just fwd-declared. Script used: def Fix(file_path): content = refactor_lib.ReadFile(file_path) if not 'TaskRunner' in content: return False # Assume fwd-decls are correct in first pass. if 'class TaskRunner;' in content: return False if 'class SequencedTaskRunner;' in content: return False if 'class SingleThreadTaskRunner;' in content: return False # Using base:: prefix ensures we don't match fwd-decls and other things. # Will require a few fixups for missing includes in //base proper. # Complex prefix in regex attempts to skip comments. matches = re.compile(r'(private:|protected:|public:)|(\n *[^/\n][^/\n][^/\n]*base::(Sequenced|SingleThread)TaskRunner\b(>&|\*)?)', re.DOTALL).findall(content) if not matches: return False # Ignore instances in private sections (probably members or worst case methods # only used by impl which must include header already). in_private_section = False found_task_runner = False found_sequenced_task_runner = False found_single_thread_task_runner = False for match in matches: if match[0] == 'private:': in_private_section = True continue if match[0] == 'protected:': in_private_section = False continue if match[0] == 'public:': in_private_section = False continue # Otherwise match[0] was empty and we have a match[1] for the main thing. assert not match[0] # Only want to add the include if we don't have a match[3] (which indicates # this match is for a ref or a pointer). if match[3]: continue # Not a ref nor a pointer, count it if not in a private section, match[2] # tells which TaskRunner type it is. if not in_private_section: if not match[2]: found_task_runner = True elif match[2] == 'Sequenced': found_sequenced_task_runner = True elif match[2] == 'SingleThread': found_single_thread_task_runner = True else: assert False updated_content = content if found_task_runner: updated_content = refactor_lib.AddInclude(file_path, content, "base/task_runner.h") if found_sequenced_task_runner: updated_content = refactor_lib.AddInclude(file_path, content, "base/sequenced_task_runner.h") if found_single_thread_task_runner: updated_content = refactor_lib.AddInclude(file_path, content, "base/single_thread_task_runner.h") if updated_content == content: return False # Write updated file refactor_lib.WriteFile(file_path, updated_content) return True TBR=gab@chromiu.org BUG=703346 CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.android:android_optional_gpu_tests_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel Review-Url: https://codereview.chromium.org/2884763002 . Cr-Commit-Position: refs/heads/master@{#472157} Committed: https://chromium.googlesource.com/chromium/src/+/5ff87ceb5f871cfd111b0d057eaf04d25ccb17ec

Patch Set 1 #

Patch Set 2 : \b to avoid matching base::SequencedTaskRunnerHandle #

Patch Set 3 : redo on r471890 #

Patch Set 4 : rebase on r472096 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+325 lines, -1 line) Patch
M android_webview/browser/aw_browser_context.cc View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M android_webview/browser/net/aw_url_request_context_getter.h View 1 chunk +1 line, -0 lines 0 comments Download
M ash/mojo_interface_factory.cc View 1 chunk +1 line, -0 lines 0 comments Download
M base/trace_event/memory_dump_manager.cc View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M base/trace_event/memory_dump_manager_unittest.cc View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M cc/benchmarks/unittest_only_benchmark.h View 1 chunk +1 line, -0 lines 0 comments Download
M cc/layers/surface_layer.cc View 1 chunk +1 line, -0 lines 0 comments Download
M cc/resources/resource_pool_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M cc/test/fake_impl_task_runner_provider.h View 1 chunk +1 line, -0 lines 0 comments Download
M cc/test/fake_layer_tree_host.cc View 1 chunk +1 line, -0 lines 0 comments Download
M cc/test/fake_layer_tree_host_impl.h View 1 chunk +1 line, -0 lines 0 comments Download
M cc/test/test_compositor_frame_sink.cc View 1 chunk +1 line, -0 lines 0 comments Download
M cc/tiles/image_controller.h View 1 chunk +1 line, -0 lines 0 comments Download
M cc/tiles/tile_manager.h View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M cc/trees/layer_tree_host.h View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M cc/trees/layer_tree_host_impl.h View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/browsing_data/chrome_browsing_data_remover_delegate_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/chrome_browser_main.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/chrome_browser_main_linux.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/chromeos/app_mode/kiosk_app_manager.cc View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/chromeos/arc/extensions/arc_support_message_host.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/chromeos/extensions/external_cache_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/chromeos/policy/device_local_account_policy_store.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/chromeos/policy/enrollment_handler_chromeos.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/chromeos/settings/session_manager_operation.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/chromeos/system_logs/debug_log_writer.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/component_updater/chrome_component_updater_configurator.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/component_updater/subresource_filter_component_installer_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/devtools/device/cast_device_provider.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/dom_distiller/dom_distiller_service_factory.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/extensions/api/log_private/log_private_api_chromeos.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/extensions/api/messaging/native_message_host_chromeos.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/extensions/api/messaging/native_message_process_host.h View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/extensions/api/sync_file_system/sync_file_system_browsertest.cc View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/extensions/api/web_request/web_request_api_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/extensions/extension_gcm_app_handler_unittest.cc View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/extensions/updater/local_extension_cache_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/gcm/gcm_profile_service_factory.cc View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/gcm/gcm_profile_service_unittest.cc View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/io_thread.cc View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/media_galleries/fileapi/native_media_file_util.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/media_galleries/fileapi/safe_iapps_library_parser.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/metrics/network_quality_estimator_provider_impl.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/net/chrome_url_request_context_getter.h View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/net/predictor_browsertest.cc View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/ntp_snippets/content_suggestions_service_factory.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/password_manager/password_store_factory.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/password_manager/password_store_mac.h View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/password_manager/password_store_proxy_mac.h View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/password_manager/password_store_win.h View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/password_manager/password_store_x.h View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/password_manager/simple_password_store_mac.h View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/password_manager/simple_password_store_mac_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/profiles/off_the_record_profile_impl.h View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/profiles/profile_impl.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/profiles/profile_io_data.cc View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/safe_browsing/chrome_cleaner/reporter_runner_browsertest_win.cc View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/safe_browsing/download_feedback_service_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/safe_browsing/incident_reporting/download_metadata_manager_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/safe_browsing/protocol_manager_unittest.cc View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/safe_browsing/safe_browsing_service.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/safe_browsing/safe_browsing_service_browsertest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/search/suggestions/suggestions_service_factory.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/search/thumbnail_source.h View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/sync_file_system/drive_backend/drive_backend_sync_unittest.cc View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/sync_file_system/drive_backend/sync_engine_unittest.cc View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/task_manager/sampling/task_group_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/thumbnails/thumbnail_list_source.h View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/ui/webui/net_export_ui.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/ui/webui/theme_source.h View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/renderer/chrome_mock_render_thread.h View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/renderer/media/cast_threads.h View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/service/service_process.h View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/test/chromedriver/net/url_request_context_getter.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/test/chromedriver/server/http_handler.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chromecast/base/alarm_manager.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chromecast/browser/cast_content_browser_client.h View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M chromecast/browser/pref_service_helper.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chromecast/browser/url_request_context_factory.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chromeos/accelerometer/accelerometer_reader.cc View 1 chunk +1 line, -0 lines 0 comments Download
M chromeos/network/proxy/proxy_config_service_impl.h View 1 chunk +1 line, -0 lines 0 comments Download
M components/autofill/core/browser/autofill_wallet_data_type_controller.h View 1 chunk +1 line, -0 lines 0 comments Download
M components/autofill/core/browser/webdata/autofill_data_type_controller.h View 1 chunk +1 line, -0 lines 0 comments Download
M components/autofill/core/browser/webdata/autofill_profile_data_type_controller.h View 1 chunk +1 line, -0 lines 0 comments Download
M components/browser_sync/profile_sync_components_factory_impl.cc View 1 chunk +1 line, -0 lines 0 comments Download
M components/browser_sync/profile_sync_service_autofill_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M components/browser_sync/profile_sync_service_typed_url_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M components/browser_sync/profile_sync_test_util.cc View 1 chunk +1 line, -0 lines 0 comments Download
M components/drive/chromeos/search_metadata.h View 1 chunk +1 line, -0 lines 0 comments Download
M components/grpc_support/test/get_stream_engine.cc View 1 chunk +1 line, -0 lines 0 comments Download
M components/invalidation/impl/invalidation_notifier.h View 1 chunk +1 line, -0 lines 0 comments Download
M components/invalidation/impl/unacked_invalidation_set_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M components/leveldb/leveldb_service_impl.h View 1 chunk +1 line, -0 lines 0 comments Download
M components/metrics/metrics_service.h View 1 chunk +1 line, -0 lines 0 comments Download
M components/metrics/metrics_state_manager.h View 1 chunk +1 line, -0 lines 0 comments Download
M components/metrics/net/network_metrics_provider.h View 1 chunk +1 line, -0 lines 0 comments Download
M components/ntp_snippets/remote/remote_suggestions_provider_impl_unittest.cc View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M components/offline_pages/core/background/request_queue_store_sql.cc View 1 chunk +1 line, -0 lines 0 comments Download
M components/offline_pages/core/offline_page_metadata_store_sql.cc View 1 chunk +1 line, -0 lines 0 comments Download
M components/os_crypt/os_crypt_linux.cc View 1 chunk +1 line, -0 lines 0 comments Download
M components/password_manager/core/browser/password_store_default.h View 1 chunk +1 line, -0 lines 0 comments Download
M components/password_manager/core/browser/webdata/password_web_data_service_win.cc View 1 chunk +1 line, -0 lines 0 comments Download
M components/policy/core/common/cloud/cloud_policy_manager_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M components/policy/core/common/cloud/component_cloud_policy_store.cc View 1 chunk +1 line, -0 lines 0 comments Download
M components/policy/core/common/cloud/mock_user_cloud_policy_store.cc View 1 chunk +1 line, -0 lines 0 comments Download
M components/policy/core/common/cloud/policy_header_service.cc View 1 chunk +1 line, -0 lines 0 comments Download
M components/policy/core/common/cloud/user_cloud_policy_store.cc View 1 chunk +1 line, -0 lines 0 comments Download
M components/policy/core/common/cloud/user_cloud_policy_store_base.cc View 1 chunk +1 line, -0 lines 0 comments Download
M components/policy/core/common/config_dir_policy_loader.h View 1 chunk +1 line, -0 lines 0 comments Download
M components/policy/core/common/policy_loader_ios.h View 1 chunk +1 line, -0 lines 0 comments Download
M components/policy/core/common/policy_loader_ios_unittest.mm View 1 chunk +1 line, -0 lines 0 comments Download
M components/policy/core/common/policy_loader_mac_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M components/policy/core/common/policy_loader_win_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M components/previews/core/previews_opt_out_store_sql.cc View 1 chunk +1 line, -0 lines 0 comments Download
M components/safe_browsing/password_protection/password_protection_service_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M components/signin/core/browser/signin_cookie_changed_subscription.cc View 1 chunk +1 line, -0 lines 0 comments Download
M components/subresource_filter/content/browser/content_ruleset_service.cc View 1 chunk +1 line, -0 lines 0 comments Download
M components/sync/model/attachments/attachment_service_proxy_for_test.cc View 1 chunk +1 line, -0 lines 0 comments Download
M components/sync/model/attachments/attachment_store.cc View 1 chunk +1 line, -0 lines 0 comments Download
M components/ui_devtools/devtools_server.h View 1 chunk +1 line, -0 lines 0 comments Download
M components/update_client/component_patcher.h View 1 chunk +1 line, -0 lines 0 comments Download
M components/update_client/component_patcher_operation.h View 1 chunk +1 line, -0 lines 0 comments Download
M components/update_client/component_patcher_unittest.h View 1 chunk +1 line, -0 lines 0 comments Download
M components/wallpaper/wallpaper_color_calculator_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M components/wifi/fake_wifi_service.h View 1 chunk +1 line, -0 lines 0 comments Download
M components/wifi/wifi_service_mac.mm View 1 chunk +1 line, -0 lines 0 comments Download
M components/wifi/wifi_service_win.cc View 1 chunk +1 line, -0 lines 0 comments Download
M content/browser/cache_storage/cache_storage.cc View 1 chunk +1 line, -0 lines 0 comments Download
M content/browser/cache_storage/cache_storage_blob_to_disk_cache_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M content/browser/cache_storage/cache_storage_context_impl.cc View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M content/browser/cache_storage/cache_storage_manager.cc View 1 chunk +1 line, -0 lines 0 comments Download
M content/browser/compositor/software_browser_compositor_output_surface.h View 1 chunk +1 line, -0 lines 0 comments Download
M content/browser/devtools/browser_devtools_agent_host.cc View 1 chunk +1 line, -0 lines 0 comments Download
M content/browser/dom_storage/local_storage_context_mojo.cc View 1 chunk +1 line, -0 lines 0 comments Download
M content/browser/download/url_downloader.cc View 1 chunk +1 line, -0 lines 0 comments Download
M content/browser/fileapi/browser_file_system_helper_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M content/browser/gpu/browser_gpu_channel_host_factory.h View 1 chunk +1 line, -0 lines 0 comments Download
M content/browser/gpu/browser_gpu_memory_buffer_manager.cc View 1 chunk +1 line, -0 lines 0 comments Download
M content/browser/gpu/shader_cache_factory.h View 1 chunk +1 line, -0 lines 0 comments Download
M content/browser/media/capture/desktop_capture_device.cc View 1 chunk +1 line, -0 lines 0 comments Download
M content/browser/net/quota_policy_cookie_store.cc View 1 chunk +1 line, -0 lines 0 comments Download
M content/browser/net/quota_policy_cookie_store_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M content/browser/renderer_host/media/audio_input_renderer_host_unittest.cc View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M content/browser/renderer_host/media/in_process_launched_video_capture_device.h View 1 chunk +1 line, -0 lines 0 comments Download
M content/browser/renderer_host/media/in_process_video_capture_device_launcher.h View 1 chunk +1 line, -0 lines 0 comments Download
M content/browser/renderer_host/media/in_process_video_capture_provider.h View 1 chunk +1 line, -0 lines 0 comments Download
M content/browser/renderer_host/media/renderer_audio_output_stream_factory_context_impl_unittest.cc View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M content/browser/startup_task_runner_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M content/browser/tracing/memory_tracing_browsertest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M content/browser/webui/shared_resources_data_source.h View 1 chunk +1 line, -0 lines 0 comments Download
M content/browser/webui/web_ui_url_loader_factory.cc View 1 chunk +1 line, -0 lines 0 comments Download
M content/child/blink_platform_impl.h View 1 chunk +1 line, -0 lines 0 comments Download
M content/child/indexed_db/indexed_db_callbacks_impl.h View 1 chunk +1 line, -0 lines 0 comments Download
M content/child/indexed_db/webidbdatabase_impl.h View 1 chunk +1 line, -0 lines 0 comments Download
M content/child/indexed_db/webidbfactory_impl.h View 1 chunk +1 line, -0 lines 0 comments Download
M content/child/url_response_body_consumer_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M content/gpu/gpu_child_thread.cc View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M content/public/renderer/render_thread.h View 1 chunk +1 line, -0 lines 0 comments Download
M content/public/test/mock_render_thread.h View 1 chunk +1 line, -0 lines 0 comments Download
M content/public/test/test_browser_context.cc View 1 chunk +1 line, -0 lines 0 comments Download
M content/renderer/categorized_worker_pool_unittest.cc View 1 chunk +2 lines, -1 line 0 comments Download
M content/renderer/input/main_thread_event_queue.h View 1 chunk +1 line, -0 lines 0 comments Download
M content/renderer/media/android/media_player_renderer_client.h View 1 chunk +1 line, -0 lines 0 comments Download
M content/renderer/media/android/media_player_renderer_client_factory.h View 1 chunk +1 line, -0 lines 0 comments Download
M content/renderer/media/android/stream_texture_wrapper_impl.h View 1 chunk +1 line, -0 lines 0 comments Download
M content/renderer/media/pepper_to_video_track_adapter.cc View 1 chunk +1 line, -0 lines 0 comments Download
M content/renderer/media/renderer_gpu_video_accelerator_factories.h View 1 chunk +1 line, -0 lines 0 comments Download
M content/renderer/media/video_track_adapter.h View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M content/renderer/media/webmediaplayer_ms.h View 1 chunk +1 line, -0 lines 0 comments Download
M content/renderer/media/webrtc/mock_peer_connection_dependency_factory.h View 1 chunk +1 line, -0 lines 0 comments Download
M content/renderer/pepper/pepper_media_stream_video_track_host.cc View 1 chunk +1 line, -0 lines 0 comments Download
M content/shell/browser/layout_test/layout_test_content_browser_client.cc View 1 chunk +1 line, -0 lines 0 comments Download
M content/shell/browser/layout_test/layout_test_url_request_context_getter.h View 1 chunk +1 line, -0 lines 0 comments Download
M content/test/fake_compositor_dependencies.h View 1 chunk +1 line, -0 lines 0 comments Download
M device/bluetooth/bluetooth_socket_win.h View 1 chunk +1 line, -0 lines 0 comments Download
M device/bluetooth/bluez/bluetooth_socket_bluez.h View 1 chunk +1 line, -0 lines 0 comments Download
M device/generic_sensor/linux/sensor_device_manager.h View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M device/generic_sensor/platform_sensor.h View 1 chunk +1 line, -0 lines 0 comments Download
M device/generic_sensor/platform_sensor_linux.cc View 1 chunk +1 line, -0 lines 0 comments Download
M device/generic_sensor/platform_sensor_provider_base.h View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M device/generic_sensor/platform_sensor_provider_linux.h View 1 chunk +1 line, -0 lines 0 comments Download
M device/generic_sensor/platform_sensor_reader_linux.cc View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M device/generic_sensor/platform_sensor_win.cc View 1 chunk +1 line, -0 lines 0 comments Download
M device/generic_sensor/sensor_provider_impl.h View 1 chunk +1 line, -0 lines 0 comments Download
M device/hid/hid_service_linux.cc View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M device/power_save_blocker/power_save_blocker_android.cc View 1 chunk +1 line, -0 lines 0 comments Download
M device/power_save_blocker/power_save_blocker_chromeos.cc View 1 chunk +1 line, -0 lines 0 comments Download
M device/power_save_blocker/power_save_blocker_win.cc View 1 chunk +1 line, -0 lines 0 comments Download
M device/power_save_blocker/power_save_blocker_x11.cc View 1 chunk +1 line, -0 lines 0 comments Download
M device/test/test_device_client.cc View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M device/usb/usb_service_impl.cc View 1 chunk +1 line, -0 lines 0 comments Download
M device/wake_lock/wake_lock_provider.h View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M extensions/browser/api/power/power_api.h View 1 chunk +1 line, -0 lines 0 comments Download
M extensions/browser/api/power/power_api_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M extensions/browser/updater/update_client_config.cc View 1 chunk +1 line, -0 lines 0 comments Download
M extensions/renderer/api/display_source/wifi_display/wifi_display_video_encoder.h View 1 chunk +1 line, -0 lines 0 comments Download
M extensions/renderer/api/display_source/wifi_display/wifi_display_video_encoder_vea.cc View 1 chunk +1 line, -0 lines 0 comments Download
M extensions/shell/browser/shell_prefs.cc View 1 chunk +1 line, -0 lines 0 comments Download
M extensions/shell/browser/shell_url_request_context_getter.h View 1 chunk +1 line, -0 lines 0 comments Download
M gin/isolate_holder.cc View 1 chunk +1 line, -0 lines 0 comments Download
M gpu/ipc/client/gpu_channel_host.h View 1 chunk +1 line, -0 lines 0 comments Download
M gpu/ipc/gl_in_process_context.h View 1 chunk +1 line, -0 lines 0 comments Download
M gpu/ipc/gpu_in_process_thread_service.h View 1 chunk +1 line, -0 lines 0 comments Download
M gpu/ipc/host/shader_disk_cache.h View 1 chunk +1 line, -0 lines 0 comments Download
M gpu/ipc/service/gpu_channel.h View 1 chunk +1 line, -0 lines 0 comments Download
M gpu/ipc/service/gpu_channel_manager.h View 1 chunk +1 line, -0 lines 0 comments Download
M gpu/ipc/service/gpu_command_buffer_stub.cc View 1 chunk +1 line, -0 lines 0 comments Download
M headless/lib/browser/headless_browser_impl.h View 1 chunk +1 line, -0 lines 0 comments Download
M headless/lib/browser/headless_url_request_context_getter.h View 1 chunk +1 line, -0 lines 0 comments Download
M headless/lib/frame_id_browsertest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M ios/chrome/browser/application_context_impl.cc View 1 chunk +1 line, -0 lines 0 comments Download
M ios/chrome/browser/autofill/validation_rules_storage_factory.cc View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M ios/chrome/browser/browser_state/chrome_browser_state_impl.cc View 1 chunk +1 line, -0 lines 0 comments Download
M ios/chrome/browser/browser_state/chrome_browser_state_io_data.cc View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M ios/chrome/browser/browser_state/test_chrome_browser_state.h View 1 chunk +1 line, -0 lines 0 comments Download
M ios/chrome/browser/component_updater/ios_component_updater_configurator.cc View 1 chunk +1 line, -0 lines 0 comments Download
M ios/chrome/browser/ios_chrome_io_thread.mm View 1 chunk +1 line, -0 lines 0 comments Download
M ios/chrome/browser/ios_chrome_main_parts.mm View 1 chunk +1 line, -0 lines 0 comments Download
M ios/chrome/browser/net/chrome_cookie_store_ios_client.h View 1 chunk +1 line, -0 lines 0 comments Download
M ios/chrome/browser/net/ios_chrome_url_request_context_getter.h View 1 chunk +1 line, -0 lines 0 comments Download
M ios/chrome/browser/ntp_snippets/ios_chrome_content_suggestions_service_factory.cc View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M ios/chrome/browser/ntp_tiles/ios_most_visited_sites_factory.cc View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M ios/chrome/browser/passwords/ios_chrome_password_store_factory.cc View 1 chunk +1 line, -0 lines 0 comments Download
M ios/chrome/browser/services/gcm/ios_chrome_gcm_profile_service_factory.cc View 1 chunk +1 line, -0 lines 0 comments Download
M ios/chrome/browser/sessions/session_service_ios_unittest.mm View 1 chunk +1 line, -0 lines 0 comments Download
M ios/web/public/test/fakes/test_browser_state.cc View 1 chunk +1 line, -0 lines 0 comments Download
M ios/web_view/internal/web_view_browser_state.mm View 1 chunk +1 line, -0 lines 0 comments Download
M jingle/glue/thread_wrapper.h View 1 chunk +1 line, -0 lines 0 comments Download
M media/audio/audio_debug_recording_helper_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M media/audio/audio_debug_recording_manager_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M media/audio/audio_input_controller.h View 1 chunk +1 line, -0 lines 0 comments Download
M media/audio/audio_input_controller_unittest.cc View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M media/audio/audio_manager.cc View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M media/audio/audio_manager_base.h View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M media/audio/audio_manager_unittest.cc View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M media/audio/mock_audio_manager.h View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M media/audio/test_audio_input_controller_factory.h View 1 chunk +1 line, -0 lines 0 comments Download
M media/base/android/media_codec_loop.cc View 1 chunk +1 line, -0 lines 0 comments Download
M media/base/bind_to_current_loop.h View 1 chunk +1 line, -0 lines 0 comments Download
M media/capture/video/android/video_capture_device_factory_android.cc View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M media/capture/video/linux/video_capture_device_chromeos.h View 1 chunk +1 line, -0 lines 0 comments Download
M media/capture/video/linux/video_capture_device_factory_linux.h View 1 chunk +1 line, -0 lines 0 comments Download
M media/capture/video/mac/video_capture_device_factory_mac.mm View 1 chunk +1 line, -0 lines 0 comments Download
M media/capture/video/video_capture_device_factory.h View 1 chunk +1 line, -0 lines 0 comments Download
M media/capture/video/win/video_capture_device_factory_win.cc View 1 chunk +1 line, -0 lines 0 comments Download
M media/filters/android/media_codec_audio_decoder.cc View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M media/gpu/android_video_decode_accelerator_unittest.cc View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M media/gpu/avda_codec_allocator.cc View 1 chunk +1 line, -0 lines 0 comments Download
M media/gpu/avda_codec_allocator_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M media/gpu/ipc/service/gpu_jpeg_decode_accelerator_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M media/gpu/ipc/service/media_gpu_channel.cc View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M media/midi/midi_manager_win.cc View 1 chunk +1 line, -0 lines 0 comments Download
M media/midi/midi_manager_winrt.cc View 1 chunk +1 line, -0 lines 0 comments Download
M media/mojo/clients/mojo_audio_decoder_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M media/mojo/clients/mojo_decoder_factory.h View 1 chunk +1 line, -0 lines 0 comments Download
M media/mojo/services/android_mojo_media_client.h View 1 chunk +1 line, -0 lines 0 comments Download
M media/mojo/services/interface_factory_impl.cc View 1 chunk +1 line, -0 lines 0 comments Download
M media/remoting/courier_renderer.h View 1 chunk +1 line, -0 lines 0 comments Download
M media/remoting/demuxer_stream_adapter.cc View 1 chunk +1 line, -0 lines 0 comments Download
M media/remoting/demuxer_stream_adapter_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M mojo/public/cpp/bindings/lib/associated_binding.cc View 1 chunk +1 line, -0 lines 0 comments Download
M net/android/http_auth_negotiate_android.cc View 1 chunk +1 line, -0 lines 0 comments Download
M net/cert_net/cert_net_fetcher_impl.cc View 1 chunk +1 line, -0 lines 0 comments Download
M net/log/file_net_log_observer.cc View 1 chunk +1 line, -0 lines 0 comments Download
M net/url_request/test_url_fetcher_factory.h View 1 chunk +1 line, -0 lines 0 comments Download
M net/url_request/url_fetcher_impl.h View 1 chunk +1 line, -0 lines 0 comments Download
M remoting/client/client_context.cc View 1 chunk +1 line, -0 lines 0 comments Download
M remoting/host/audio_capturer_linux.h View 1 chunk +1 line, -0 lines 0 comments Download
M remoting/host/chromeos/clipboard_aura_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M remoting/host/chromoting_host_context.cc View 1 chunk +1 line, -0 lines 0 comments Download
M remoting/host/it2me/it2me_native_messaging_host.cc View 1 chunk +1 line, -0 lines 0 comments Download
M remoting/host/it2me_desktop_environment.h View 1 chunk +1 line, -0 lines 0 comments Download
M remoting/host/linux/audio_pipe_reader.h View 1 chunk +1 line, -0 lines 0 comments Download
M remoting/host/linux/certificate_watcher.h View 1 chunk +1 line, -0 lines 0 comments Download
M remoting/host/linux/certificate_watcher_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M remoting/host/me2me_desktop_environment.h View 1 chunk +1 line, -0 lines 0 comments Download
M remoting/host/single_window_desktop_environment.h View 1 chunk +1 line, -0 lines 0 comments Download
M remoting/host/win/session_desktop_environment.h View 1 chunk +1 line, -0 lines 0 comments Download
M remoting/protocol/fake_connection_to_host.h View 1 chunk +1 line, -0 lines 0 comments Download
M remoting/protocol/pseudotcp_adapter_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M remoting/protocol/webrtc_audio_module.cc View 1 chunk +1 line, -0 lines 0 comments Download
M remoting/protocol/webrtc_connection_to_client.h View 1 chunk +1 line, -0 lines 0 comments Download
M remoting/protocol/webrtc_connection_to_host.h View 1 chunk +1 line, -0 lines 0 comments Download
M remoting/signaling/delegating_signal_strategy.cc View 1 chunk +1 line, -0 lines 0 comments Download
M services/device/time_zone_monitor/time_zone_monitor_android.cc View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M services/file/file_service.h View 1 chunk +1 line, -0 lines 0 comments Download
M services/service_manager/public/cpp/service_context_ref.cc View 1 chunk +1 line, -0 lines 0 comments Download
M services/ui/gpu/gpu_main.cc View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M services/ui/gpu/gpu_service.h View 1 chunk +1 line, -0 lines 0 comments Download
M services/ui/gpu/gpu_service_unittest.cc View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M services/ui/public/cpp/gpu/client_gpu_memory_buffer_manager.cc View 1 chunk +1 line, -0 lines 0 comments Download
M services/ui/ws/gpu_host_unittest.cc View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M services/ui/ws/test_utils.h View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M services/video_capture/receiver_mojo_to_media_adapter.h View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/scheduler/base/task_queue_manager_delegate.h View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/scheduler/base/task_queue_manager_delegate_for_test.h View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/scheduler/base/task_queue_manager_perftest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/scheduler/child/compositor_worker_scheduler.h View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/scheduler/child/idle_helper_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/scheduler/child/scheduler_helper_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/scheduler/child/scheduler_tqm_delegate.h View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/scheduler/child/scheduler_tqm_delegate_for_test.h View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/scheduler/child/scheduler_tqm_delegate_impl.h View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/scheduler/child/scheduler_tqm_delegate_impl_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/scheduler/child/single_thread_idle_task_runner.cc View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/scheduler/child/worker_scheduler_impl.h View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/scheduler/child/worker_scheduler_impl_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/scheduler/renderer/renderer_scheduler_impl.h View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/scheduler/renderer/renderer_scheduler_impl_unittest.cc View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/scheduler/test/fake_renderer_scheduler.cc View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/scheduler/test/lazy_scheduler_message_loop_delegate_for_tests.h View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/public/platform/scheduler/renderer/renderer_scheduler.h View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/public/platform/scheduler/test/fake_renderer_scheduler.h View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/public/platform/scheduler/test/mock_renderer_scheduler.h View 1 chunk +1 line, -0 lines 0 comments Download
M tools/battor_agent/battor_agent.h View 1 chunk +1 line, -0 lines 0 comments Download
M tools/battor_agent/battor_agent_bin.cc View 1 chunk +1 line, -0 lines 0 comments Download
M tools/battor_agent/battor_connection_impl.h View 1 chunk +1 line, -0 lines 0 comments Download
M ui/aura/mus/window_tree_client.h View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M ui/compositor/compositor_unittest.cc View 1 chunk +1 line, -0 lines 0 comments Download
M ui/events/ozone/evdev/event_factory_evdev.cc View 1 chunk +1 line, -0 lines 0 comments Download
M ui/ozone/platform/drm/host/drm_gpu_platform_support_host.h View 1 chunk +1 line, -0 lines 0 comments Download
M ui/views/cocoa/bridged_native_widget.mm View 1 chunk +1 line, -0 lines 0 comments Download
M ui/views/mus/mus_client.cc View 1 chunk +1 line, -0 lines 0 comments Download

Dependent Patchsets:

Messages

Total messages: 25 (16 generated)
gab
fdoray@ PTaL, will TBR self to bypass other owners
3 years, 7 months ago (2017-05-15 19:22:03 UTC) #7
gab
On 2017/05/15 19:22:03, gab wrote: > fdoray@ PTaL, will TBR self to bypass other owners ...
3 years, 7 months ago (2017-05-15 20:59:33 UTC) #12
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2884763002/40001
3 years, 7 months ago (2017-05-15 21:04:05 UTC) #14
commit-bot: I haz the power
Try jobs failed on following builders: android_n5x_swarming_rel on master.tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/android_n5x_swarming_rel/builds/178604) android_optional_gpu_tests_rel on master.tryserver.chromium.android (JOB_FAILED, ...
3 years, 7 months ago (2017-05-15 21:12:52 UTC) #16
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2884763002/60001
3 years, 7 months ago (2017-05-16 14:26:43 UTC) #18
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_asan_rel_ng on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_asan_rel_ng/builds/371791)
3 years, 7 months ago (2017-05-16 17:23:56 UTC) #20
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2884763002/60001
3 years, 7 months ago (2017-05-16 18:03:13 UTC) #22
gab
On 2017/05/16 17:23:56, commit-bot: I haz the power wrote: > Try jobs failed on following ...
3 years, 7 months ago (2017-05-16 18:03:36 UTC) #23
gab
3 years, 7 months ago (2017-05-16 18:06:18 UTC) #25
Message was sent while issue was closed.
Committed patchset #4 (id:60001) manually as
5ff87ceb5f871cfd111b0d057eaf04d25ccb17ec (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698