Index: chrome/common/extensions/manifest_url_handler.cc |
diff --git a/chrome/common/extensions/manifest_url_handler.cc b/chrome/common/extensions/manifest_url_handler.cc |
index 03f6919ffddc0e5a1aaa086b7711a52f1254b1ef..1aa6481ec25dc7cfeb0e0e58d4474d922953b6fd 100644 |
--- a/chrome/common/extensions/manifest_url_handler.cc |
+++ b/chrome/common/extensions/manifest_url_handler.cc |
@@ -66,6 +66,11 @@ const GURL ManifestURL::GetHomepageURL(const Extension* extension) { |
} |
// static |
+bool ManifestURL::SpecifiedHomepageURL(const Extension* extension) { |
+ return GetManifestURL(extension, keys::kHomepageURL).is_valid(); |
+} |
+ |
+// static |
const GURL& ManifestURL::GetUpdateURL(const Extension* extension) { |
return GetManifestURL(extension, keys::kUpdateURL); |
} |