From 44ce0ec5b05184c4e33d597d4e5a32d9f38b15c2 Mon Sep 17 00:00:00 2001 From: brettw Date: Thu, 11 Jun 2015 18:57:57 -0700 Subject: Move StartsWith[ASCII] to base namespace. NOPRESUBMIT=true (no presubmit due to removing base:: from a ScopedAllowIO) Review URL: https://codereview.chromium.org/1172183002 Cr-Commit-Position: refs/heads/master@{#334108} --- components/pairing/bluetooth_controller_pairing_controller.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'components/pairing') diff --git a/components/pairing/bluetooth_controller_pairing_controller.cc b/components/pairing/bluetooth_controller_pairing_controller.cc index 476b205..b843354 100644 --- a/components/pairing/bluetooth_controller_pairing_controller.cc +++ b/components/pairing/bluetooth_controller_pairing_controller.cc @@ -70,8 +70,8 @@ void BluetoothControllerPairingController::DeviceFound( device::BluetoothDevice* device) { DCHECK_EQ(current_stage_, STAGE_DEVICES_DISCOVERY); DCHECK(thread_checker_.CalledOnValidThread()); - if (StartsWith(device->GetName(), base::ASCIIToUTF16(kDeviceNamePrefix), - false)) { + if (base::StartsWith(device->GetName(), base::ASCIIToUTF16(kDeviceNamePrefix), + false)) { discovered_devices_.insert(device->GetAddress()); FOR_EACH_OBSERVER(ControllerPairingController::Observer, observers_, DiscoveredDevicesListChanged()); -- cgit v1.1