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

Side by Side Diff: ios/web_view/shell/shell_app_delegate.mm

Issue 2650323002: Cleanup ios/web_view. (Closed)
Patch Set: Respond to comments. Created 3 years, 10 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 unified diff | Download patch
« no previous file with comments | « ios/web_view/public/criwv_web_view.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #import "ios/web_view/shell/shell_app_delegate.h" 5 #import "ios/web_view/shell/shell_app_delegate.h"
6 6
7 #import "base/mac/scoped_nsobject.h" 7 #import "base/mac/scoped_nsobject.h"
8 #import "ios/web_view/public/criwv.h" 8 #import "ios/web_view/public/criwv.h"
9 #import "ios/web_view/shell/shell_delegate.h" 9 #import "ios/web_view/shell/shell_delegate.h"
10 #import "ios/web_view/shell/shell_view_controller.h" 10 #import "ios/web_view/shell/shell_view_controller.h"
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 - (void)applicationWillEnterForeground:(UIApplication*)application { 42 - (void)applicationWillEnterForeground:(UIApplication*)application {
43 } 43 }
44 44
45 - (void)applicationDidBecomeActive:(UIApplication*)application { 45 - (void)applicationDidBecomeActive:(UIApplication*)application {
46 } 46 }
47 47
48 - (void)applicationWillTerminate:(UIApplication*)application { 48 - (void)applicationWillTerminate:(UIApplication*)application {
49 [CRIWV shutDown]; 49 [CRIWV shutDown];
50 } 50 }
51 51
52 - (void)dealloc {
53 [_window release];
54 [super dealloc];
55 }
56
52 @end 57 @end
OLDNEW
« no previous file with comments | « ios/web_view/public/criwv_web_view.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698