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

Unified Diff: ios/web/test/crw_fake_web_controller_observer.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/web/shell/view_controller.mm ('k') | ios/web/weak_nsobject_counter.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/web/test/crw_fake_web_controller_observer.mm
diff --git a/ios/web/test/crw_fake_web_controller_observer.mm b/ios/web/test/crw_fake_web_controller_observer.mm
index 18081684eb8cb6b587dc4349311a498a991a773e..c15553fc71dcb9a37398a67e2875e11e50a06a12 100644
--- a/ios/web/test/crw_fake_web_controller_observer.mm
+++ b/ios/web/test/crw_fake_web_controller_observer.mm
@@ -15,11 +15,6 @@
@synthesize pageLoaded = _pageLoaded;
-- (instancetype)init {
- NOTREACHED();
- return nil;
-}
-
- (instancetype)initWithCommandPrefix:(NSString*)commandPrefix {
DCHECK(commandPrefix);
self = [super init];
@@ -29,6 +24,11 @@
return self;
}
+- (instancetype)init {
+ NOTREACHED();
+ return nil;
+}
+
- (void)pageLoaded:(CRWWebController*)webController {
_pageLoaded = YES;
}
« no previous file with comments | « ios/web/shell/view_controller.mm ('k') | ios/web/weak_nsobject_counter.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698