0
Files
src/base
Benjamin Beaudry 80e8fe8cc8 M135: [UIA] Implement IRawElementProviderAdviseEvents to reduce event overhead
This is a cherry-pick to M135. It will improve performance for the 1.34%
of users that currently use the native UiaProvider. We also needed to
include the one-line check to the DCHECK in CL:6349079 (in
base/win/scoped_safearray.h) to avoid test crashes.

This CL implements the IRawElementProviderAdviseEvents UIA interface to
limit event firing to only those actively listened to by UIA clients.
The interface is implemented on AXPlatformNodeWin, but per UIA
documentation, its methods are only invoked on the fragment root.

To achieve this, AXFragmentRootWin now maintains two unordered_maps --
one for EVENTIDs and another for PROPERTYIDs. Before firing an event, we
check if a UIA client has registered interest in it within the fragment
tree, reducing unnecessary event processing and improving performance.

While we manually tested that we're always firing the required events
when an assistive technology is listening in, we're adding a killswitch
to turn off the feature remotely in case unexpected problems are
discovered in prod.

(cherry picked from commit 4a358fb1c1)

Bug: 40919326, 401016023, 402375302
Fixed: 403626090
Change-Id: I18554f50e59a1013452c691c3f310f2629835b59
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6337330
Reviewed-by: Greg Thompson <grt@chromium.org>
Commit-Queue: Benjamin Beaudry <benjamin.beaudry@microsoft.com>
Cr-Original-Commit-Position: refs/heads/main@{#1432231}
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6358320
Auto-Submit: Benjamin Beaudry <benjamin.beaudry@microsoft.com>
Commit-Queue: Greg Thompson <grt@chromium.org>
Cr-Commit-Position: refs/branch-heads/7049@{#841}
Cr-Branched-From: 2dab7846d0951a552bdc4f350dad497f986e6fed-refs/heads/main@{#1427262}
2025-03-17 08:34:22 -07:00
..
2025-02-26 05:43:49 -08:00
2025-02-19 16:51:29 -08:00
2025-01-31 10:57:26 -08:00
2025-02-05 01:05:26 -08:00
2025-01-16 23:10:59 -08:00
2025-02-05 01:05:26 -08:00
2025-01-31 10:57:26 -08:00
2024-12-27 18:30:09 -08:00
2024-12-27 18:30:09 -08:00
2024-12-27 18:30:09 -08:00
2025-02-19 12:26:41 -08:00
2024-12-27 18:30:09 -08:00
2024-12-27 18:30:09 -08:00
2024-12-27 18:30:09 -08:00
2024-12-27 18:30:09 -08:00
2024-12-27 18:30:09 -08:00
2024-12-27 18:30:09 -08:00
2024-12-02 15:30:22 +00:00
2024-12-27 18:30:09 -08:00
2025-01-17 06:32:12 -08:00
2024-12-27 18:30:09 -08:00
2024-12-27 18:30:09 -08:00
2024-12-27 18:30:09 -08:00
2024-12-27 18:30:09 -08:00
2024-12-27 18:30:09 -08:00
2025-02-05 01:05:26 -08:00
2024-12-27 18:30:09 -08:00
2024-12-27 18:30:09 -08:00
2024-12-27 18:30:09 -08:00
2024-11-08 21:56:14 +00:00
2024-12-27 18:30:09 -08:00
2024-12-27 18:30:09 -08:00
2024-12-27 18:30:09 -08:00
2025-01-31 10:57:26 -08:00
2024-12-27 18:30:09 -08:00
2024-12-27 18:30:09 -08:00
2024-09-04 13:50:16 +00:00
2024-12-27 18:30:09 -08:00
2024-12-27 18:30:09 -08:00
2024-12-27 18:30:09 -08:00
2024-12-27 18:30:09 -08:00
2024-12-27 18:30:09 -08:00
2024-12-27 18:30:09 -08:00
2024-12-27 18:30:09 -08:00
2024-12-27 18:30:09 -08:00

What is this

Contains a written down set of principles and other information on //base. Please add to it!

About //base:

Chromium is a very mature project. Most things that are generally useful are already here and things not here aren't generally useful.

The bar for adding stuff to base is that it must have demonstrated wide applicability. Prefer to add things closer to where they're used (i.e. "not base"), and pull into base only when needed. In a project our size, sometimes even duplication is OK and inevitable.

Adding a new logging macro DPVELOG_NE is not more clear than just writing the stuff you want to log in a regular logging statement, even if it makes your calling code longer. Just add it to your own code.

If the code in question does not need to be used inside base, but will have multiple consumers across the codebase, consider placing it in a new directory under components/ instead.

base is written for the Chromium project and is not intended to be used outside it. Using base outside of src.git is explicitly not supported, and base makes no guarantees about API (or even ABI) stability (like all other code in Chromium). New code that depends on base/ must be in src.git. Code that's not in src.git but pulled in through DEPS (for example, v8) cannot use base.

Qualifications for being in //base OWNERS

  • interest and ability to learn low level/high detail/complex c++ stuff
  • inclination to always ask why and understand everything (including external interactions like win32) rather than just hoping the author did it right
  • mentorship/experience
  • demonstrated good judgement (esp with regards to public APIs) over a length of time

Owners are added when a contributor has shown the above qualifications and when they express interest. There isn't an upper bound on the number of OWNERS.

Design and naming

  • Be sure to use the base namespace.
  • STL-like constructs should adhere as closely to STL as possible. Functions and behaviors not present in STL should only be added when they are related to the specific data structure implemented by the container.
  • For STL-like constructs our policy is that they should use STL-like naming even when it may conflict with the style guide. So functions and class names should be lower case with underscores. Non-STL-like classes and functions should use Google naming.

Performance testing

Since the primitives provided by //base are used very widely, it is important to ensure they scale to the necessary workloads and perform well under all supported platforms. The base_perftests target is a suite of synthetic microbenchmarks that measure performance in various scenarios:

  • BasicPostTaskPerfTest: Exercises MessageLoopTaskRunner's multi-threaded queue in isolation.
  • ConditionVariablePerfTest: Measures thread switching cost of condition variables.
  • IntegratedPostTaskPerfTest: Exercises the full MessageLoop/RunLoop machinery.
  • JSONPerfTest: Tests JSONWriter and JSONReader performance.
  • MessageLoopPerfTest: Measures the speed of task posting in various configurations.
  • ObserverListPerfTest: Exercises adding, removing and signalling observers.
  • PartitionLockPerfTest: Tests the implementation of Lock used in PartitionAlloc
  • PthreadEventPerfTest: Establishes the baseline thread switching cost using pthreads.
  • RandUtilPerfTest: Measures the time it takes to generate random numbers.
  • ScheduleWorkTest: Measures the overhead of MessagePump::ScheduleWork.
  • SequenceManagerPerfTest: Benchmarks SequenceManager scheduling with various underlying task runners.
  • TaskObserverPerfTest: Measures the incremental cost of adding task observers.
  • TaskPerfTest: Checks the cost of posting tasks between threads.
  • ThreadLocalStoragePerfTest: Exercises different mechanisms for accessing data associated with the current thread (C++ thread_local, the implementation in //base, the POSIX/WinAPI directly)
  • WaitableEvent{Thread,}PerfTest: Measures waitable events in single and multithreaded scenarios.

Regressions in these benchmarks can generally by caused by 1) operating system changes, 2) compiler version or flag changes or 3) changes in //base code itself.