| Index: services/shape_detection/barcode_detection_impl_mac.mm
|
| diff --git a/services/shape_detection/barcode_detection_impl_mac.mm b/services/shape_detection/barcode_detection_impl_mac.mm
|
| index 0e873d7f14f43ee8e7aa3a383f7e68cde4088143..ec0ac0bb6219482cdf7e8124cc9dfa566a7470cd 100644
|
| --- a/services/shape_detection/barcode_detection_impl_mac.mm
|
| +++ b/services/shape_detection/barcode_detection_impl_mac.mm
|
| @@ -42,10 +42,10 @@ void BarcodeDetectionImpl::Create(
|
| }
|
|
|
| BarcodeDetectionImplMac::BarcodeDetectionImplMac() {
|
| - NSDictionary* const opts = @{CIDetectorAccuracy : CIDetectorAccuracyHigh};
|
| + NSDictionary* const options = @{CIDetectorAccuracy : CIDetectorAccuracyHigh};
|
| detector_.reset([[CIDetector detectorOfType:CIDetectorTypeQRCode
|
| context:nil
|
| - options:opts] retain]);
|
| + options:options] retain]);
|
| }
|
|
|
| BarcodeDetectionImplMac::~BarcodeDetectionImplMac() {}
|
|
|