| Index: content/public/browser/navigation_entry.h
|
| diff --git a/content/public/browser/navigation_entry.h b/content/public/browser/navigation_entry.h
|
| index cc25a254cf08c2904dc5aa10e5b09122a70f481f..e675d2f01aa2ee83566c673a83db496ecad323f5 100644
|
| --- a/content/public/browser/navigation_entry.h
|
| +++ b/content/public/browser/navigation_entry.h
|
| @@ -188,6 +188,14 @@ class NavigationEntry {
|
| // is currently only used in tests.
|
| virtual void SetFrameToNavigate(const std::string& frame_name) = 0;
|
| virtual const std::string& GetFrameToNavigate() const = 0;
|
| +
|
| + // Set extra data on this NavigationEntry according to the specified |key|.
|
| + // This data is not persisted by default.
|
| + virtual void SetExtraData(const std::string& key, const string16& data) = 0;
|
| + // If present, fills the |data| present at the specified |key|.
|
| + virtual bool GetExtraData(const std::string& key, string16* data) const = 0;
|
| + // Removes the data at the specified |key|.
|
| + virtual void ClearExtraData(const std::string& key) = 0;
|
| };
|
|
|
| } // namespace content
|
|
|