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

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

Issue 2567983008: FasterReload: remove default WebFrameLoadType from WebFrame::reload* (Closed)
Patch Set: Created 4 years 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
« no previous file with comments | « third_party/WebKit/Source/web/tests/WebFrameTest.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 2dae4eff4881bd5d08397a6fd843ac83d13d438e..581e3c8677be81c614656e545dee6764370ad140 100644
--- a/third_party/WebKit/public/web/WebFrame.h
+++ b/third_party/WebKit/public/web/WebFrame.h
@@ -320,13 +320,12 @@ class WebFrame {
// 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 = WebFrameLoadType::Reload) = 0;
+ 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& overrideUrl,
- WebFrameLoadType = WebFrameLoadType::Reload) = 0;
+ virtual void reloadWithOverrideURL(const WebURL& overrideUrl,
+ WebFrameLoadType) = 0;
// Load the given URL.
virtual void loadRequest(const WebURLRequest&) = 0;
« no previous file with comments | « third_party/WebKit/Source/web/tests/WebFrameTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698