Remove location namespace in third_party/nearby.

PiperOrigin-RevId: 500023196
This commit is contained in:
Suet-Fei Li
2023-01-06 02:53:57 -08:00
committed by Copybara-Service
parent 7afea00649
commit 084f7ebd88
714 changed files with 2710 additions and 3738 deletions
@@ -18,7 +18,7 @@
TEST(atomic_reference, SuccessfulCreation) {
// Arrange
location::nearby::windows::AtomicUint32 atomicUint32;
nearby::windows::AtomicUint32 atomicUint32;
uint32_t result = UINT32_MAX;
const uint32_t expected = 0;
@@ -31,7 +31,7 @@ TEST(atomic_reference, SuccessfulCreation) {
TEST(atomic_reference, SuccessfulMaxSet) {
// Arrange
location::nearby::windows::AtomicUint32 atomicUint32;
nearby::windows::AtomicUint32 atomicUint32;
uint32_t result = 0;
const uint32_t expected = UINT32_MAX;
@@ -45,7 +45,7 @@ TEST(atomic_reference, SuccessfulMaxSet) {
TEST(atomic_reference, SuccessfulMinSet) {
// Arrange
location::nearby::windows::AtomicUint32 atomicUint32;
nearby::windows::AtomicUint32 atomicUint32;
uint32_t result = UINT32_MAX;
const uint32_t expected = 0;
@@ -59,7 +59,7 @@ TEST(atomic_reference, SuccessfulMinSet) {
TEST(atomic_reference, SetNegativeOneReturnsMAXUINT) {
// Arrange
location::nearby::windows::AtomicUint32 atomicUint32;
nearby::windows::AtomicUint32 atomicUint32;
uint32_t result = 0;
const uint32_t expected = UINT32_MAX;