| 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_CHROME_BROWSER_SIGNIN_GAIA_AUTH_FETCHER_IOS_PRIVATE_H_ | 5 #ifndef IOS_CHROME_BROWSER_SIGNIN_GAIA_AUTH_FETCHER_IOS_PRIVATE_H_ |
| 6 #define IOS_CHROME_BROWSER_SIGNIN_GAIA_AUTH_FETCHER_IOS_PRIVATE_H_ | 6 #define IOS_CHROME_BROWSER_SIGNIN_GAIA_AUTH_FETCHER_IOS_PRIVATE_H_ |
| 7 | 7 |
| 8 #import <Webkit/Webkit.h> | 8 #import <WebKit/WebKit.h> |
| 9 | 9 |
| 10 #import "base/mac/scoped_nsobject.h" | 10 #import "base/mac/scoped_nsobject.h" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "ios/web/public/active_state_manager.h" | 12 #include "ios/web/public/active_state_manager.h" |
| 13 | 13 |
| 14 class GaiaAuthFetcherIOS; | 14 class GaiaAuthFetcherIOS; |
| 15 class GURL; | 15 class GURL; |
| 16 | 16 |
| 17 namespace web { | 17 namespace web { |
| 18 class BrowserState; | 18 class BrowserState; |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 // Navigation delegate of |web_view_| that informs the bridge of relevant | 101 // Navigation delegate of |web_view_| that informs the bridge of relevant |
| 102 // navigation events. | 102 // navigation events. |
| 103 base::scoped_nsobject<GaiaAuthFetcherNavigationDelegate> navigation_delegate_; | 103 base::scoped_nsobject<GaiaAuthFetcherNavigationDelegate> navigation_delegate_; |
| 104 // Web view used to do the network requests. | 104 // Web view used to do the network requests. |
| 105 base::scoped_nsobject<WKWebView> web_view_; | 105 base::scoped_nsobject<WKWebView> web_view_; |
| 106 | 106 |
| 107 DISALLOW_COPY_AND_ASSIGN(GaiaAuthFetcherIOSBridge); | 107 DISALLOW_COPY_AND_ASSIGN(GaiaAuthFetcherIOSBridge); |
| 108 }; | 108 }; |
| 109 | 109 |
| 110 #endif // IOS_CHROME_BROWSER_SIGNIN_GAIA_AUTH_FETCHER_IOS_PRIVATE_H_ | 110 #endif // IOS_CHROME_BROWSER_SIGNIN_GAIA_AUTH_FETCHER_IOS_PRIVATE_H_ |
| OLD | NEW |