OLD | NEW |
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 Loading... |
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; | |
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 Loading... |
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_ |
OLD | NEW |