| Index: ios/public/test/test_updatable_resource_provider.mm
|
| diff --git a/ios/public/test/test_updatable_resource_provider.mm b/ios/public/test/test_updatable_resource_provider.mm
|
| index de8459f2ec0c8636be5d7bd521b67f1c0ec1fa3a..177f17bd390e0db7b2cdb389de92eae6ac2b445d 100644
|
| --- a/ios/public/test/test_updatable_resource_provider.mm
|
| +++ b/ios/public/test/test_updatable_resource_provider.mm
|
| @@ -43,6 +43,7 @@
|
| - (instancetype)initWithDelegate:(id<UpdatableResourceDelegate>)delegate
|
| plist:(NSString*)resource_identifier
|
| NS_DESIGNATED_INITIALIZER;
|
| +- (instancetype)init NS_UNAVAILABLE;
|
| @end
|
|
|
| @implementation TestUpdatableResource {
|
| @@ -62,6 +63,11 @@
|
| return self;
|
| }
|
|
|
| +- (instancetype)init {
|
| + NOTREACHED();
|
| + return nil;
|
| +}
|
| +
|
| - (id<UpdatableResourceDescriptorBridge>)descriptor {
|
| return _descriptor.get();
|
| }
|
|
|