[roll] Roll fuchsia [display][coordinator] Make IdMappable ID immutable and private.

We hope to remove IdMappable in the long term. However, for the
short-to-medium term, we'll probably have to live with it.

This CL addresses the biggest issues in IdMappable -- the data member
that serves as the map key is both public and mutable.

1. Public data members go against the C++ style guide.

2. Most map implementations (including the ones in fbl) assume that an
   object's key remains immutable while the object is inserted in the
   map. Making the map key immutable is a straightforward way to ensure
   that the assumption above is true.

Having an immutable data member makes the IdMappable class non-copyable
and non-movable. The C++ style guide requires stating these aspects
explicitly.

Original-Bug: 336394440
Test: fx test //src/graphics/display
Original-Reviewed-on: https://fuchsia-review.googlesource.com/c/fuchsia/+/1211122
Original-Revision: 37f444decd03c1c931efa719f41971d7a72d53c8
GitOrigin-RevId: 7a92ba6e7e09e24bd40158a261eaae78b290bfed
Change-Id: Ic2a19e240e8cff97a8edd533232274670420193d
1 file changed
tree: 6d4aff489f43d11833ef82a7e3b0c9b411ca6717
  1. ctf/
  2. git-hooks/
  3. infra/
  4. third_party/
  5. cts
  6. firmware
  7. flower
  8. jiri.lock
  9. MILESTONE
  10. minimal
  11. prebuilts
  12. README.md
  13. stem
  14. test_durations
  15. toolchain
README.md

Integration

This repository contains Fuchsia's Global Integration manifest files.

Making changes

All changes should be made to the internal version of this repository. Our infrastructure automatically updates this version when the internal one changes.

Currently all changes must be made by a Google employee. Non-Google employees wishing to make a change can ask for assistance in one of the communication channels documented at get involved.

Obtaining the source

First install Jiri.

Next run:

$ jiri init
$ jiri import minimal https://fuchsia.googlesource.com/integration
$ jiri update

Third party

Third party projects should have their own subdirectory in ./third_party.