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

Unified Diff: ios/chrome/browser/updatable_config/updatable_config_base.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/chrome/browser/ui/commands/generic_chrome_command.mm ('k') | ios/chrome/browser/xcallback_parameters.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/updatable_config/updatable_config_base.mm
diff --git a/ios/chrome/browser/updatable_config/updatable_config_base.mm b/ios/chrome/browser/updatable_config/updatable_config_base.mm
index 80c3ddb83fb36b810043a6a200e63428e672769d..58d10581d9432307d594ce5ec543c0c64e9fbba5 100644
--- a/ios/chrome/browser/updatable_config/updatable_config_base.mm
+++ b/ios/chrome/browser/updatable_config/updatable_config_base.mm
@@ -113,11 +113,6 @@ class ConfigFetcher : public net::URLFetcherDelegate {
}
// Overrides default designated initializer.
-- (instancetype)init {
- NOTREACHED();
- return nil;
-}
-
- (instancetype)initWithAppId:(NSString*)appId
version:(NSString*)appVersion
plist:(NSString*)plistName {
@@ -157,6 +152,11 @@ class ConfigFetcher : public net::URLFetcherDelegate {
return self;
}
+- (instancetype)init {
+ NOTREACHED();
+ return nil;
+}
+
- (void)dealloc {
[[NSNotificationCenter defaultCenter] removeObserver:self];
#if !defined(NDEBUG)
« no previous file with comments | « ios/chrome/browser/ui/commands/generic_chrome_command.mm ('k') | ios/chrome/browser/xcallback_parameters.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698