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

Unified Diff: ios/chrome/browser/xcallback_parameters.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/xcallback_parameters.h ('k') | ios/crnet/crnet_environment.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/xcallback_parameters.mm
diff --git a/ios/chrome/browser/xcallback_parameters.mm b/ios/chrome/browser/xcallback_parameters.mm
index 0d55d38b85334d24c891bbd5daff072a78f7c8fa..8554aa7624d110b09b9cd206f283de9b3829fe56 100644
--- a/ios/chrome/browser/xcallback_parameters.mm
+++ b/ios/chrome/browser/xcallback_parameters.mm
@@ -4,6 +4,7 @@
#import "ios/chrome/browser/xcallback_parameters.h"
+#include "base/logging.h"
#include "base/mac/scoped_nsobject.h"
#include "base/strings/sys_string_conversions.h"
@@ -41,6 +42,11 @@ NSString* const kCreateNewTabKey = @"createNewTab";
return self;
}
+- (instancetype)init {
+ NOTREACHED();
+ return nil;
+}
+
- (NSString*)description {
return [NSString stringWithFormat:@"SourceApp: %@ (%@)\nSuccessURL: %s\n",
_sourceAppName.get(), _sourceAppId.get(),
« no previous file with comments | « ios/chrome/browser/xcallback_parameters.h ('k') | ios/crnet/crnet_environment.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698