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

Side by Side Diff: ios/chrome/browser/tabs/tab.h

Issue 2650563002: Pass WebState to NativeAppNavigationController (Closed)
Patch Set: Add chrome_web_test support Created 3 years, 11 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
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 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 #ifndef IOS_CHROME_BROWSER_TABS_TAB_H_ 5 #ifndef IOS_CHROME_BROWSER_TABS_TAB_H_
6 #define IOS_CHROME_BROWSER_TABS_TAB_H_ 6 #define IOS_CHROME_BROWSER_TABS_TAB_H_
7 7
8 #import <UIKit/UIKit.h> 8 #import <UIKit/UIKit.h>
9 9
10 #include <memory> 10 #include <memory>
(...skipping 25 matching lines...) Expand all
36 @class SnapshotManager; 36 @class SnapshotManager;
37 @protocol SnapshotOverlayProvider; 37 @protocol SnapshotOverlayProvider;
38 @protocol StoreKitLauncher; 38 @protocol StoreKitLauncher;
39 @class FormSuggestionController; 39 @class FormSuggestionController;
40 @protocol TabDelegate; 40 @protocol TabDelegate;
41 @protocol TabDialogDelegate; 41 @protocol TabDialogDelegate;
42 @class Tab; 42 @class Tab;
43 @protocol TabHeadersDelegate; 43 @protocol TabHeadersDelegate;
44 @class TabModel; 44 @class TabModel;
45 @protocol TabSnapshottingDelegate; 45 @protocol TabSnapshottingDelegate;
46 @class TranslateControllerImplIOS;
47 @class WebControllerSnapshotHelper;
rohitrao (ping after 24h) 2017/01/24 14:24:56 These changes look unrelated, could be removed fro
pkl (ping after 24h if needed) 2017/01/26 00:30:17 Reverted.
48 46
49 namespace infobars { 47 namespace infobars {
50 class InfoBarManager; 48 class InfoBarManager;
51 } 49 }
52 50
53 namespace ios { 51 namespace ios {
54 class ChromeBrowserState; 52 class ChromeBrowserState;
55 } 53 }
56 54
57 namespace sessions { 55 namespace sessions {
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 345
348 // Called when this tab is hidden. 346 // Called when this tab is hidden.
349 - (void)wasHidden; 347 - (void)wasHidden;
350 348
351 // Evaluates U2F result. 349 // Evaluates U2F result.
352 - (void)evaluateU2FResultFromURL:(const GURL&)url; 350 - (void)evaluateU2FResultFromURL:(const GURL&)url;
353 351
354 @end 352 @end
355 353
356 #endif // IOS_CHROME_BROWSER_TABS_TAB_H_ 354 #endif // IOS_CHROME_BROWSER_TABS_TAB_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698