| 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 98786842671da153c4aa570ad9ef62a51cab9ee6..bf5f835c627dc5dc46f91d0b9ab1b43449836a6d 100644
|
| --- a/chrome/common/extensions/manifest_url_handler.h
|
| +++ b/chrome/common/extensions/manifest_url_handler.h
|
| @@ -41,9 +41,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);
|
|
|
| @@ -110,23 +107,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
|
|
|