Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(291)

Unified Diff: ios/public/test/test_updatable_resource_provider.mm

Issue 1171203004: Correct iOS build for latest Xcode beta. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Nits Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ios/net/request_tracker.mm ('k') | ios/web/browsing_data_managers/crw_cookie_browsing_data_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
}
« no previous file with comments | « ios/net/request_tracker.mm ('k') | ios/web/browsing_data_managers/crw_cookie_browsing_data_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698