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

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

Issue 2940863005: Move loading methods from WebFrame to WebLocalFrame. (Closed)
Patch Set: Fixing build problems introduced by rebasing... 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 394d190b59e3beb40c3f7dce641dec7abf8197e5..54a433c7187ac02052f18f1237a4e7d9c6401bc2 100644
--- a/third_party/WebKit/public/web/WebFrame.h
+++ b/third_party/WebKit/public/web/WebFrame.h
@@ -210,19 +210,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