0
Files
src/base
ssid 6bedaa9822 Reland "Reland "Migrate RenderProcessHost trace events to typed protos""
This reverts commit 990b238931.

Reason for revert: Disabled flaky tests and fixed crash in browser
context. The flaky tests are fixed in follow up cl.

Original change's description:
> Revert "Reland "Migrate RenderProcessHost trace events to typed protos""
>
> This reverts commit 0d540e74f6.
>
> Reason for revert: Still crashing: https://test-results.appspot.com/dashboards/flakiness_dashboard.html#testType=content_browsertests%20(with%20patch)&tests=All%2FSitePerProcessSSLBrowserTest.UnloadHandlersArePowerfulGrandChild
>
> Original change's description:
> > Reland "Migrate RenderProcessHost trace events to typed protos"
> >
> > This reverts commit 87c5394c76.
> >
> > Reason for revert: Fixed the crash
> >
> > The crash was due to adding trace event after the impl() was
> > destroyed in the destructor. Moved the event earlier. This
> > was missed in the tests because none of the tests covered
> > shutdown tracing. Added test coverage.
> >
> > Original change's description:
> > > Revert "Migrate RenderProcessHost trace events to typed protos"
> > >
> > > This reverts commit feb18e2f01.
> > >
> > > Reason for revert: Dev release blocker
> > >
> > > Original change's description:
> > > > Migrate RenderProcessHost trace events to typed protos
> > > >
> > > > Converts shutdown and render_host TRACE_EVENTs to typed protos, in order
> > > > to ensure privacy safe trace data.
> > > >
> > > > Bug: b/165405144
> > > > Change-Id: Ia37bdfe6195f1bdd474dc9b33b6e538e862fb87b
> > > > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2812422
> > > > Commit-Queue: ssid <ssid@chromium.org>
> > > > Reviewed-by: Eric Seckler <eseckler@chromium.org>
> > > > Reviewed-by: Nasko Oskov <nasko@chromium.org>
> > > > Reviewed-by: Alexander Timin <altimin@chromium.org>
> > > > Cr-Commit-Position: refs/heads/master@{#883169}
> > >
> > > Bug: b/165405144
> > > Change-Id: Ic27030af42ed11d24d5f846fc06b6d7e0736d697
> > > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2900765
> > > Reviewed-by: Nasko Oskov <nasko@chromium.org>
> > > Owners-Override: Srinivas Sista <srinivassista@chromium.org>
> > > Commit-Queue: Tommy Nyquist <nyquist@chromium.org>
> > > Cr-Commit-Position: refs/heads/master@{#883715}
> >
> > Bug: b/165405144
> > Change-Id: Ibf00467a2c01a470867e2aeb2217906df93eb4fa
> > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2923877
> > Commit-Queue: ssid <ssid@chromium.org>
> > Reviewed-by: Nasko Oskov <nasko@chromium.org>
> > Reviewed-by: Tommy Nyquist <nyquist@chromium.org>
> > Cr-Commit-Position: refs/heads/master@{#888597}
>
> Bug: b/165405144
> Change-Id: I4284060f73359a06c9dbd33f57e927c88b370ac8
> No-Presubmit: true
> No-Tree-Checks: true
> No-Try: true
> Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2935238
> Reviewed-by: Yi Gu <yigu@chromium.org>
> Reviewed-by: Xida Chen <xidachen@chromium.org>
> Owners-Override: Yi Gu <yigu@chromium.org>
> Bot-Commit: Rubber Stamper <rubber-stamper@appspot.gserviceaccount.com>
> Auto-Submit: Yi Gu <yigu@chromium.org>
> Commit-Queue: Xida Chen <xidachen@chromium.org>
> Cr-Commit-Position: refs/heads/master@{#888863}

Bug: b/165405144, 1209478
Change-Id: I3f5a2fbcbffed849af5e5af74295cf88ae99b9c1
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2938343
Reviewed-by: Nasko Oskov <nasko@chromium.org>
Reviewed-by: Yi Gu <yigu@chromium.org>
Reviewed-by: Tommy Nyquist <nyquist@chromium.org>
Commit-Queue: ssid <ssid@chromium.org>
Cr-Commit-Position: refs/heads/master@{#892949}
2021-06-16 10:25:24 +00:00
..
2020-10-29 13:02:29 +00:00
2021-03-05 11:10:04 +00:00
2021-06-09 15:27:44 +00:00
2021-06-09 15:27:44 +00:00
2021-03-25 18:52:15 +00:00
2021-05-14 22:54:38 +00:00
2020-10-22 16:00:36 +00:00
2020-12-15 18:23:11 +00:00
2021-06-08 23:09:40 +00: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.
  • PthreadEventPerfTest: Establishes the baseline thread switching cost using pthreads.
  • 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.
  • 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.