Upstream has renamed `base::GUID` to `base::Uuid` to avoid name
collisions with some constants in Windows headers. Therefore, all
instances of the `base/guid.h` header, as well as anything using the
former name, must be changed to use `base::Uuid`, in preparation of the
deletion of the legacy name from upstream.
Chromium change:
https://chromium.googlesource.com/chromium/src/+/f800d299bb9374ca8d401c1d326339833cb4280e
commit f800d299bb9374ca8d401c1d326339833cb4280e
Author: Claudio DeSouza <cdesouza@igalia.com>
Date: Thu Jun 8 03:11:20 2023 +0000
Delete base/guid.h
This CL deletes `base/guid.h` from the codebase, as all uses of
`base::GUID` have been replaced with `base::Uuid`. Additionally, all
deprecated functions are also getting deleted, as all uses have been
corrected.
Bug: 1428566, 1195446