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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 bool IsShowingWebInterstitial() const override; | 201 bool IsShowingWebInterstitial() const override; |
202 WebInterstitial* GetWebInterstitial() const override; | 202 WebInterstitial* GetWebInterstitial() const override; |
203 void OnPasswordInputShownOnHttp() override; | 203 void OnPasswordInputShownOnHttp() override; |
204 void OnCreditCardInputShownOnHttp() override; | 204 void OnCreditCardInputShownOnHttp() override; |
205 void AddScriptCommandCallback(const ScriptCommandCallback& callback, | 205 void AddScriptCommandCallback(const ScriptCommandCallback& callback, |
206 const std::string& command_prefix) override; | 206 const std::string& command_prefix) override; |
207 void RemoveScriptCommandCallback(const std::string& command_prefix) override; | 207 void RemoveScriptCommandCallback(const std::string& command_prefix) override; |
208 id<CRWWebViewProxy> GetWebViewProxy() const override; | 208 id<CRWWebViewProxy> GetWebViewProxy() const override; |
209 WebStateInterfaceProvider* GetWebStateInterfaceProvider() override; | 209 WebStateInterfaceProvider* GetWebStateInterfaceProvider() override; |
210 bool HasOpener() const override; | 210 bool HasOpener() const override; |
| 211 void TakeSnapshot(const SnapshotCallback& callback) const override; |
211 base::WeakPtr<WebState> AsWeakPtr() override; | 212 base::WeakPtr<WebState> AsWeakPtr() override; |
212 | 213 |
213 // Adds |interstitial|'s view to the web controller's content view. | 214 // Adds |interstitial|'s view to the web controller's content view. |
214 void ShowWebInterstitial(WebInterstitialImpl* interstitial); | 215 void ShowWebInterstitial(WebInterstitialImpl* interstitial); |
215 | 216 |
216 // Called to dismiss the currently-displayed transient content view. | 217 // Called to dismiss the currently-displayed transient content view. |
217 void ClearTransientContentView(); | 218 void ClearTransientContentView(); |
218 | 219 |
219 // Notifies the delegate that the load progress was updated. | 220 // Notifies the delegate that the load progress was updated. |
220 void SendChangeLoadProgress(double progress); | 221 void SendChangeLoadProgress(double progress); |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
348 | 349 |
349 // Mojo interface registry for this WebState. | 350 // Mojo interface registry for this WebState. |
350 std::unique_ptr<WebStateInterfaceProvider> web_state_interface_provider_; | 351 std::unique_ptr<WebStateInterfaceProvider> web_state_interface_provider_; |
351 | 352 |
352 DISALLOW_COPY_AND_ASSIGN(WebStateImpl); | 353 DISALLOW_COPY_AND_ASSIGN(WebStateImpl); |
353 }; | 354 }; |
354 | 355 |
355 } // namespace web | 356 } // namespace web |
356 | 357 |
357 #endif // IOS_WEB_WEB_STATE_WEB_STATE_IMPL_H_ | 358 #endif // IOS_WEB_WEB_STATE_WEB_STATE_IMPL_H_ |
OLD | NEW |