Chromium Code Reviews| Index: content/public/browser/navigation_entry.h |
| diff --git a/content/public/browser/navigation_entry.h b/content/public/browser/navigation_entry.h |
| index 63af6871b20e202b7d796960e9d298c9d86e2a35..26d1ac4cbd072b4f6bded5914faa89e05e6173d3 100644 |
| --- a/content/public/browser/navigation_entry.h |
| +++ b/content/public/browser/navigation_entry.h |
| @@ -182,6 +182,11 @@ class NavigationEntry { |
| // resources. |
| virtual void SetCanLoadLocalResources(bool allow) = 0; |
| virtual bool GetCanLoadLocalResources() const = 0; |
| + |
| + // Set extra browser data on this NavigationEntry. |
|
jam
2013/01/17 16:24:22
nit: no "browser"
Mathieu
2013/01/18 18:38:05
Done.
|
| + virtual void SetExtraData(const std::string& key, const string16& data) = 0; |
| + virtual const bool GetExtraData(const std::string& key, string16* out_value) |
| + const = 0; |
| }; |
| } // namespace content |