| Index: content/public/browser/navigation_entry.h
|
| diff --git a/content/public/browser/navigation_entry.h b/content/public/browser/navigation_entry.h
|
| index cce64049734a29145e5c8bd38872563b2199b5c9..ddbc1d0214c7d99d395c8006eb09f85088588ac0 100644
|
| --- a/content/public/browser/navigation_entry.h
|
| +++ b/content/public/browser/navigation_entry.h
|
| @@ -48,6 +48,10 @@ class NavigationEntry {
|
| virtual void SetURL(const GURL& url) = 0;
|
| virtual const GURL& GetURL() const = 0;
|
|
|
| + // Used for specifying a base URL for pages loaded via data URLs.
|
| + virtual void SetBaseURLForDataURL(const GURL& url) = 0;
|
| + virtual const GURL& GetBaseURLForDataURL() const = 0;
|
| +
|
| // The referring URL. Can be empty.
|
| virtual void SetReferrer(const content::Referrer& referrer) = 0;
|
| virtual const content::Referrer& GetReferrer() const = 0;
|
|
|