Index: content/public/browser/navigation_controller.h |
diff --git a/content/public/browser/navigation_controller.h b/content/public/browser/navigation_controller.h |
index c9c1a01384a76cd56736af5fe1bc2e9e5c4ec4fd..3b2e8fe20fdf6063b72d578f52aaa173b88a1ff1 100644 |
--- a/content/public/browser/navigation_controller.h |
+++ b/content/public/browser/navigation_controller.h |
@@ -167,6 +167,13 @@ class NavigationController { |
PageTransition type, |
const std::string& extra_headers) = 0; |
+ // Loads a 'data:' scheme URL with specified base URL and a history entry URL. |
Charlie Reis
2012/06/18 18:34:29
"history entry URL" isn't clear to me. It appears
mnaganov (inactive)
2012/06/19 12:52:32
A comment added.
This URL isn't only displayed in
Charlie Reis
2012/06/19 17:17:24
Hmm. The name is fine, then, but this does scare
Charlie Reis
2012/07/03 17:54:37
Thanks, I see that you added a check for params.ur
|
+ virtual void LoadDataWithBaseURL(const GURL& data_url, |
+ const Referrer& referrer, |
+ const GURL& base_url, |
+ const GURL& history_url, |
+ bool is_overriding_user_agent) = 0; |
+ |
// Behaves like LoadURL() and LoadURLFromRenderer() but marks the new |
// navigation as being transferred from one RVH to another. In this case the |
// browser can recycle the old request once the new renderer wants to |