Fully qualify ::location::nearby imports.

Find and replace exercise.
Replace
`using location::nearby`
with
`using ::location::nearby`
and
`using <Name> = location::nearby`
with
`using <Name> = ::location::nearby`

PiperOrigin-RevId: 490087051
This commit is contained in:
Janusz Sobczak
2022-11-21 15:33:21 -08:00
committed by Copybara-Service
parent 39d3ef1a7c
commit a3b6058753
21 changed files with 49 additions and 50 deletions
@@ -23,9 +23,9 @@
#include "internal/platform/implementation/submittable_executor.h"
#include "internal/platform/runnable.h"
using location::nearby::Runnable;
using location::nearby::api::ImplementationPlatform;
using MultiThreadExecutor = location::nearby::api::SubmittableExecutor;
using ::location::nearby::Runnable;
using ::location::nearby::api::ImplementationPlatform;
using MultiThreadExecutor = ::location::nearby::api::SubmittableExecutor;
@interface GNCMultiThreadExecutorTest : XCTestCase
@property(atomic) int counter;
@@ -23,9 +23,9 @@
#include "internal/platform/implementation/scheduled_executor.h"
#include "internal/platform/runnable.h"
using location::nearby::Runnable;
using location::nearby::api::ImplementationPlatform;
using location::nearby::api::ScheduledExecutor;
using ::location::nearby::Runnable;
using ::location::nearby::api::ImplementationPlatform;
using ::location::nearby::api::ScheduledExecutor;
@interface GNCScheduledExecutorTest : XCTestCase
@property(atomic) int counter;
@@ -23,9 +23,9 @@
#include "internal/platform/implementation/submittable_executor.h"
#include "internal/platform/runnable.h"
using location::nearby::Runnable;
using location::nearby::api::ImplementationPlatform;
using SingleThreadExecutor = location::nearby::api::SubmittableExecutor;
using ::location::nearby::Runnable;
using ::location::nearby::api::ImplementationPlatform;
using SingleThreadExecutor = ::location::nearby::api::SubmittableExecutor;
@interface GNCSingleThreadExecutorTest : XCTestCase
@property(atomic) int counter;
@@ -17,10 +17,10 @@
#include "internal/platform/byte_array.h"
#include "internal/platform/implementation/ios/utils.h"
using location::nearby::ByteArray;
using location::nearby::ByteArrayFromNSData;
using location::nearby::CppStringFromObjCString;
using location::nearby::ObjCStringFromCppString;
using ::location::nearby::ByteArray;
using ::location::nearby::ByteArrayFromNSData;
using ::location::nearby::CppStringFromObjCString;
using ::location::nearby::ObjCStringFromCppString;
@interface GNCUtilsTest : XCTestCase
@end
@@ -35,7 +35,7 @@
// STOP/HANG AND IS INTENDED SOLELY FOR DEBUG AND DEMONSTRATION PURPOSES. DO NOT
// ATTEMPT TO BUILD AND RUN THIS TEST ON GOOGLE3 YOU HAVE BEEN WARNED
using location::nearby::windows::BluetoothDevice;
using ::location::nearby::windows::BluetoothDevice;
typedef std::map<const std::string, location::nearby::api::BluetoothDevice*>
DeviceMap;
@@ -19,7 +19,7 @@
#include "gtest/gtest.h"
// using location::nearby::windows::uint64_to_mac_address_string;
// using ::location::nearby::windows::uint64_to_mac_address_string;
namespace location {
namespace nearby {
namespace windows {