Index: chrome/common/extensions/manifest_url_handler.h |
diff --git a/chrome/common/extensions/manifest_url_handler.h b/chrome/common/extensions/manifest_url_handler.h |
index 9c7919206ab398fb16f315d1d0e86d747dd1202c..e7ff09d6c72a780ba6c315998f53aed883bb4b1d 100644 |
--- a/chrome/common/extensions/manifest_url_handler.h |
+++ b/chrome/common/extensions/manifest_url_handler.h |
@@ -37,9 +37,6 @@ struct ManifestURL : public Extension::ManifestData { |
static bool UpdatesFromGallery(const Extension* extension); |
static bool UpdatesFromGallery(const base::DictionaryValue* manifest); |
- // Returns the Options Page for this extension. |
- static const GURL& GetOptionsPage(const Extension* extension); |
- |
// Returns the About Page for this extension. |
static const GURL& GetAboutPage(const Extension* extension); |
@@ -106,23 +103,6 @@ class UpdateURLHandler : public ManifestHandler { |
DISALLOW_COPY_AND_ASSIGN(UpdateURLHandler); |
}; |
-// Parses the "options_page" manifest key. |
-class OptionsPageHandler : public ManifestHandler { |
- public: |
- OptionsPageHandler(); |
- virtual ~OptionsPageHandler(); |
- |
- virtual bool Parse(Extension* extension, base::string16* error) OVERRIDE; |
- virtual bool Validate(const Extension* extension, |
- std::string* error, |
- std::vector<InstallWarning>* warnings) const OVERRIDE; |
- |
- private: |
- virtual const std::vector<std::string> Keys() const OVERRIDE; |
- |
- DISALLOW_COPY_AND_ASSIGN(OptionsPageHandler); |
-}; |
- |
// Parses the "about_page" manifest key. |
// TODO(sashab): Make this and any other similar handlers extend from the same |
// abstract class, URLManifestHandler, which has pure virtual methods for |