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..fd3acd44d9ce33e08003b862020faf3cc11f470b 100644 |
--- a/content/public/browser/navigation_entry.h |
+++ b/content/public/browser/navigation_entry.h |
@@ -188,6 +188,11 @@ 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. |
+ virtual void SetExtraData(const std::string& key, const string16& data) = 0; |
+ virtual const bool GetExtraData(const std::string& key, string16* out_value) |
sreeram
2013/01/30 21:41:39
virtual bool GetExtraData(const std::string& key,
Mathieu
2013/01/30 21:55:12
Done.
|
+ const = 0; |
}; |
} // namespace content |