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

Unified Diff: ios/chrome/app/multitasking_test_application_delegate.mm

Issue 2886303003: [ObjC ARC] Converts ios/chrome/test/earl_grey:ios_chrome_multitasking_egtests to ARC. (Closed)
Patch Set: Created 3 years, 7 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 | « no previous file | ios/chrome/test/earl_grey/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/app/multitasking_test_application_delegate.mm
diff --git a/ios/chrome/app/multitasking_test_application_delegate.mm b/ios/chrome/app/multitasking_test_application_delegate.mm
index f5a3a8ebb7588f58846e49f93a7b91e4cf5593a9..7fddf09b70a85171403301eceec0d1bb336309f8 100644
--- a/ios/chrome/app/multitasking_test_application_delegate.mm
+++ b/ios/chrome/app/multitasking_test_application_delegate.mm
@@ -36,9 +36,9 @@ - (BOOL)application:(UIApplication*)application
didFinishLaunchingWithOptions:(NSDictionary*)launchOptions {
// Configure application window size for multitasking tests.
CGSize newWindowSize = [self windowSize];
- self.window = [[[ChromeOverlayWindow alloc]
- initWithFrame:CGRectMake(0, 0, newWindowSize.width, newWindowSize.height)]
- autorelease];
+ self.window = [[ChromeOverlayWindow alloc]
+ initWithFrame:CGRectMake(0, 0, newWindowSize.width,
+ newWindowSize.height)];
BOOL inBackground =
[application applicationState] == UIApplicationStateBackground;
« no previous file with comments | « no previous file | ios/chrome/test/earl_grey/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698