Index: chrome/common/extensions/manifest.h |
diff --git a/chrome/common/extensions/manifest.h b/chrome/common/extensions/manifest.h |
index 6c8d6129156c628f480a68f38d0e8620cbb74d9d..7472c2944814c645671217bcc77ac22c07b58605 100644 |
--- a/chrome/common/extensions/manifest.h |
+++ b/chrome/common/extensions/manifest.h |
@@ -61,7 +61,11 @@ class Manifest { |
bool GetString(const std::string& path, std::string* out_value) const; |
bool GetString(const std::string& path, string16* out_value) const; |
bool GetDictionary(const std::string& path, |
+ const base::DictionaryValue** out_value) const; |
+ bool GetDictionary(const std::string& path, |
base::DictionaryValue** out_value) const; |
+ bool GetList(const std::string& path, |
+ const base::ListValue** out_value) const; |
bool GetList(const std::string& path, base::ListValue** out_value) const; |
// Returns a new Manifest equal to this one, passing ownership to |