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

Unified Diff: third_party/WebKit/public/web/WebFrame.h

Issue 2940863005: Move loading methods from WebFrame to WebLocalFrame. (Closed)
Patch Set: 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/public/web/WebFrame.h
diff --git a/third_party/WebKit/public/web/WebFrame.h b/third_party/WebKit/public/web/WebFrame.h
index 3db02d3e5eb6e3f7248815a867a22ed238051ab2..cf00095a0dd21cd91e91554f247c9e98612b097a 100644
--- a/third_party/WebKit/public/web/WebFrame.h
+++ b/third_party/WebKit/public/web/WebFrame.h
@@ -213,19 +213,6 @@ class BLINK_EXPORT WebFrame {
// TODO(clamy): Remove the reload, reloadWithOverrideURL, and loadRequest
// functions once RenderFrame only calls WebLoadFrame::load.
- // Reload the current document.
- // Note: reload() and reloadWithOverrideURL() will be deprecated.
- // Do not use these APIs any more, but use loadRequest() instead.
- virtual void Reload(WebFrameLoadType) = 0;
-
- // This is used for situations where we want to reload a different URL because
- // of a redirect.
- virtual void ReloadWithOverrideURL(const WebURL& override_url,
- WebFrameLoadType) = 0;
-
- // Load the given URL.
- virtual void LoadRequest(const WebURLRequest&) = 0;
-
// Stops any pending loads on the frame and its children.
virtual void StopLoading() = 0;

Powered by Google App Engine
This is Rietveld 408576698