OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_WEB_INTERSTITIALS_WEB_INTERSTITIAL_IMPL_H_ | 5 #ifndef IOS_WEB_INTERSTITIALS_WEB_INTERSTITIAL_IMPL_H_ |
6 #define IOS_WEB_INTERSTITIALS_WEB_INTERSTITIAL_IMPL_H_ | 6 #define IOS_WEB_INTERSTITIALS_WEB_INTERSTITIAL_IMPL_H_ |
7 | 7 |
8 #import <UIKit/UIKit.h> | 8 #import <UIKit/UIKit.h> |
9 | 9 |
10 #import "ios/web/public/interstitials/web_interstitial.h" | 10 #include "ios/web/public/interstitials/web_interstitial.h" |
11 #include "ios/web/public/web_state/ui/crw_content_view.h" | 11 #import "ios/web/public/web_state/ui/crw_content_view.h" |
12 #include "ios/web/public/web_state/web_state_observer.h" | 12 #include "ios/web/public/web_state/web_state_observer.h" |
13 #import "ios/web/web_state/ui/web_view_js_utils.h" | 13 #import "ios/web/web_state/ui/web_view_js_utils.h" |
14 #include "url/gurl.h" | 14 #include "url/gurl.h" |
15 | 15 |
16 namespace web { | 16 namespace web { |
17 | 17 |
18 class NavigationManagerImpl; | 18 class NavigationManagerImpl; |
19 class WebInterstitialDelegate; | 19 class WebInterstitialDelegate; |
20 class WebInterstitialFacadeDelegate; | 20 class WebInterstitialFacadeDelegate; |
21 class WebInterstitialImpl; | 21 class WebInterstitialImpl; |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 | 88 |
89 // Must be implemented only for testing purposes. | 89 // Must be implemented only for testing purposes. |
90 friend void web::ExecuteScriptForTesting(WebInterstitialImpl*, | 90 friend void web::ExecuteScriptForTesting(WebInterstitialImpl*, |
91 NSString*, | 91 NSString*, |
92 JavaScriptResultBlock); | 92 JavaScriptResultBlock); |
93 }; | 93 }; |
94 | 94 |
95 } // namespace web | 95 } // namespace web |
96 | 96 |
97 #endif // IOS_WEB_INTERSTITIALS_WEB_INTERSTITIAL_IMPL_H_ | 97 #endif // IOS_WEB_INTERSTITIALS_WEB_INTERSTITIAL_IMPL_H_ |
OLD | NEW |