| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_WEB_STATE_WEB_STATE_IMPL_H_ | 5 #ifndef IOS_WEB_WEB_STATE_WEB_STATE_IMPL_H_ |
| 6 #define IOS_WEB_WEB_STATE_WEB_STATE_IMPL_H_ | 6 #define IOS_WEB_WEB_STATE_WEB_STATE_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 GURL GetCurrentURL(URLVerificationTrustLevel* trust_level) const override; | 221 GURL GetCurrentURL(URLVerificationTrustLevel* trust_level) const override; |
| 222 void ShowTransientContentView(CRWContentView* content_view) override; | 222 void ShowTransientContentView(CRWContentView* content_view) override; |
| 223 bool IsShowingWebInterstitial() const override; | 223 bool IsShowingWebInterstitial() const override; |
| 224 WebInterstitial* GetWebInterstitial() const override; | 224 WebInterstitial* GetWebInterstitial() const override; |
| 225 void OnPasswordInputShownOnHttp() override; | 225 void OnPasswordInputShownOnHttp() override; |
| 226 void OnCreditCardInputShownOnHttp() override; | 226 void OnCreditCardInputShownOnHttp() override; |
| 227 void AddScriptCommandCallback(const ScriptCommandCallback& callback, | 227 void AddScriptCommandCallback(const ScriptCommandCallback& callback, |
| 228 const std::string& command_prefix) override; | 228 const std::string& command_prefix) override; |
| 229 void RemoveScriptCommandCallback(const std::string& command_prefix) override; | 229 void RemoveScriptCommandCallback(const std::string& command_prefix) override; |
| 230 id<CRWWebViewProxy> GetWebViewProxy() const override; | 230 id<CRWWebViewProxy> GetWebViewProxy() const override; |
| 231 int DownloadImage(const GURL& url, | |
| 232 bool is_favicon, | |
| 233 uint32_t max_bitmap_size, | |
| 234 bool bypass_cache, | |
| 235 const ImageDownloadCallback& callback) override; | |
| 236 service_manager::InterfaceRegistry* GetMojoInterfaceRegistry() override; | 231 service_manager::InterfaceRegistry* GetMojoInterfaceRegistry() override; |
| 237 base::WeakPtr<WebState> AsWeakPtr() override; | 232 base::WeakPtr<WebState> AsWeakPtr() override; |
| 238 | 233 |
| 239 // Adds |interstitial|'s view to the web controller's content view. | 234 // Adds |interstitial|'s view to the web controller's content view. |
| 240 void ShowWebInterstitial(WebInterstitialImpl* interstitial); | 235 void ShowWebInterstitial(WebInterstitialImpl* interstitial); |
| 241 | 236 |
| 242 // Called to dismiss the currently-displayed transient content view. | 237 // Called to dismiss the currently-displayed transient content view. |
| 243 void ClearTransientContentView(); | 238 void ClearTransientContentView(); |
| 244 | 239 |
| 245 // Notifies the delegate that the load progress was updated. | 240 // Notifies the delegate that the load progress was updated. |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 | 349 |
| 355 // Image Fetcher used to images. | 350 // Image Fetcher used to images. |
| 356 std::unique_ptr<ImageDataFetcher> image_fetcher_; | 351 std::unique_ptr<ImageDataFetcher> image_fetcher_; |
| 357 | 352 |
| 358 DISALLOW_COPY_AND_ASSIGN(WebStateImpl); | 353 DISALLOW_COPY_AND_ASSIGN(WebStateImpl); |
| 359 }; | 354 }; |
| 360 | 355 |
| 361 } // namespace web | 356 } // namespace web |
| 362 | 357 |
| 363 #endif // IOS_WEB_WEB_STATE_WEB_STATE_IMPL_H_ | 358 #endif // IOS_WEB_WEB_STATE_WEB_STATE_IMPL_H_ |
| OLD | NEW |