Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(92)

Side by Side Diff: ios/web/web_state/web_state_impl.h

Issue 2945213002: [ios] Snapshot for WebState (Closed)
Patch Set: Address comments. Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698