[glic-api] get Glic experimental triggering updates method

Adds an API that supports observing glic updates.
See cl/900855716 for additional details.
Design doc: go/remote-chrome-actuation-agent

Bug: b:499251806
Change-Id: If842d5cb6c83b177c64623fe34e6eaa2694c8cb9
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/7765987
Reviewed-by: Dan H <[email protected]>
Reviewed-by: Carlos Knippschild <[email protected]>
Commit-Queue: Roman Arora <[email protected]>
Reviewed-by: Daniel Cheng <[email protected]>
Cr-Commit-Position: refs/heads/main@{#1619184}
NOKEYCHECK=True
GitOrigin-RevId: 5cafe5e7c7d0ae7bd02c851658faca0d448eccdb
2 files changed
tree: 53c7e9d59775b4862cd1331205094b66ea99bc66
  1. accessibility/
  2. aggregation_service/
  3. android/
  4. autotest/
  5. bedrock/
  6. binary_size/
  7. bisect/
  8. bisect_repackage/
  9. captured_sites/
  10. cast3p/
  11. cfi/
  12. check_ecs_deps/
  13. checkbins/
  14. checkperms/
  15. checkteamtags/
  16. chrome_extensions/
  17. chromeos/
  18. clang/
  19. code_cache_generator/
  20. code_coverage/
  21. codeql/
  22. compile_test/
  23. cr/
  24. crates/
  25. cros/
  26. cygprofile/
  27. determinism/
  28. disable_tests/
  29. dromaeo_benchmark_runner/
  30. dump_process_memory/
  31. emacs/
  32. feature_engagement/
  33. find_runtime_symbols/
  34. flags/
  35. flakiness/
  36. fuchsia/
  37. gdb/
  38. generate_library_loader/
  39. generate_shim_headers/
  40. generate_stubs/
  41. gerrit/
  42. get_asan_chrome/
  43. get_swarming_logs/
  44. git/
  45. gn/
  46. grd/
  47. grit/
  48. gritsettings/
  49. idl_parser/
  50. imagediff/
  51. infra/
  52. ininja/
  53. interactive_ui_tests/
  54. ipc_fuzzer/
  55. jj/
  56. json_comment_eater/
  57. json_data_generator/
  58. json_schema_compiler/
  59. json_to_struct/
  60. l10n/
  61. licenses/
  62. linux/
  63. lldb/
  64. mac/
  65. mb/
  66. md_browser/
  67. media_engagement_preload/
  68. memory/
  69. metrics/
  70. msan/
  71. nix/
  72. nocompile/
  73. oobe/
  74. origin_trials/
  75. perf/
  76. perfbot-analysis/
  77. pervasive_resources/
  78. pgo/
  79. pixel_test/
  80. polymer/
  81. profiling/
  82. protoc_wrapper/
  83. python/
  84. real_world_impact/
  85. resources/
  86. rust/
  87. security/
  88. site_compare/
  89. strict_enum_value_checker/
  90. style_variable_generator/
  91. sublime/
  92. symsrc/
  93. test_selection/
  94. traceline/
  95. tracing/
  96. traffic_annotation/
  97. translation/
  98. typescript/
  99. ubsan/
  100. usb_gadget/
  101. utr/
  102. v8_context_snapshot/
  103. valgrind/
  104. variations/
  105. vim/
  106. visual_debugger/
  107. vscode/
  108. warning_analysis/
  109. web_bluetooth/
  110. web_dev_style/
  111. whats_new/
  112. win/
  113. .gitignore
  114. .style.yapf
  115. add_header.py
  116. add_header_test.py
  117. apply_cpplint_header_guard.py
  118. auto-nav.py
  119. autotest.py
  120. bash-completion
  121. bisect-builds.py
  122. bisect_test.py
  123. boilerplate.py
  124. buildstate.bat
  125. buildstate.py
  126. check_git_config.py
  127. check_grd_for_unused_strings.py
  128. clang-format-js
  129. DEPS
  130. diagnose-me.py
  131. DIR_METADATA
  132. download_optimization_profile.py
  133. hresult_to_enum.py
  134. include_tracer.py
  135. ipc_messages_log.py
  136. make_gtest_filter.py
  137. make_gtest_filter_test.py
  138. mojo_messages_log.py
  139. multi_process_rss.py
  140. omahaproxy.py
  141. OWNERS
  142. perry.py
  143. PRESUBMIT.py
  144. README.md
  145. remove_stale_files.py
  146. remove_stale_pyc_files.py
  147. roll_webgl_conformance.py
  148. run-swarmed.py
  149. sample_clang_tidy_results.py
  150. sort_sources.py
  151. uberblame.py
  152. unused-symbols-report.py
  153. update_pgo_profiles.py
  154. yes_no.py
README.md

Overview of the //tools Directory

This document provides a high-level guide to the scripts and utilities in the //tools directory. Its purpose is to improve the discoverability of these tools for both human developers and AI assistants.

Many tools have their own README.md files with more detailed information.

Tool Categories

Build & Compilation

  • gn/: Contains helper scripts for the GN meta-build system.
  • grit/: The Google Resource and Internationalization Tool. Used for processing .grd files, which contain strings, images, and other resources that are compiled into the binary. See grit/README.md for details.
  • json_schema_compiler/: A tool that takes a JSON schema as input and generates C++ classes for serialization and deserialization.
  • mb/: The Meta-Build wrapper. A Python script that wraps GN argument generation and Ninja invocation for different configurations. See the user_guide.md for more.
  • pgo/: Tools for Profile-Guided Optimization.

Code Analysis & Formatting

  • clang/: Contains scripts for managing and using the Clang compiler and its related tools, such as clang-format and clang-tidy.
  • checklicenses/: A script to check that all third-party code has an appropriate license. See licenses/README.md.
  • pylint/: Scripts for running Python lint checks.
  • code_analysis/: A directory for helper scripts that perform static analysis on the codebase.
    • find_mojo_implementations.py: A script to find the C++ classes that implement a given Mojo interface.
  • uberblame.py: A powerful tool for assigning blame for code changes.

Testing & Test Management

  • bisect/: Home of bisect-builds.py, a powerful script for automatically bisecting a regression by downloading pre-built revisions of Chrome.
  • perf/: The primary location for performance testing tools and test suites. This is a large and complex area of the codebase.
  • run-swarmed.py: A script for running tests on the Swarming distributed testing infrastructure.
  • flakiness/: Tools for dealing with test flakiness. See flakiness/README.md.

Dependency Management

  • Note: Most dependency management is handled by depot_tools, which is not in this directory. However, some in-tree tools exist.
  • crates/: Scripts for managing third-party Rust libraries (crates) from crates.io.

Performance Analysis & Debugging

  • profiling/: Contains various scripts for profiling and analyzing performance, including heap and CPU profilers.
  • memory/: Tools specifically for memory analysis, such as scripts for investigating memory leaks.
  • binary_size/: Scripts for analyzing and diagnosing the binary size of Chrome.
  • tracing/: Scripts for analyzing performance traces. See tracing/README.md.
  • gdb/: GDB-related tools and scripts. See gdb/README.md.
  • valgrind/: Valgrind-related tools and suppressions. See valgrind/README.md.
  • symsrc/: Tools for managing symbols and source indexing. See symsrc/README.chromium.

Metrics & Telemetry

WebUI

  • style_variable_generator/: Tools for generating C++ files from CSS variables. See style_variable_generator/README.md.
  • typescript/: Tools for working with TypeScript in WebUI.

Developer Workflow

  • cr/: A wrapper for many common developer commands. See cr/README.

Platform-Specific Utilities

  • android/: Tools specific to the Android build and development process.
  • chromeos/: Tools specific to ChromeOS development.
  • fuchsia/: Tools specific to Fuchsia development.
  • mac/: Tools specific to macOS development.
  • win/: Tools specific to Windows development.