| Index: trunk/src/chrome/common/extensions/features/feature.h
|
| ===================================================================
|
| --- trunk/src/chrome/common/extensions/features/feature.h (revision 190861)
|
| +++ trunk/src/chrome/common/extensions/features/feature.h (working copy)
|
| @@ -88,7 +88,6 @@
|
| const std::string message_;
|
| };
|
|
|
| - Feature();
|
| virtual ~Feature();
|
|
|
| // Used by ChromeV8Context until the feature system is fully functional.
|
| @@ -125,7 +124,6 @@
|
|
|
| const std::string& name() const { return name_; }
|
| void set_name(const std::string& name) { name_ = name; }
|
| - const std::set<std::string>& dependencies() { return dependencies_; }
|
|
|
| // Gets the platform the code is currently running on.
|
| static Platform GetCurrentPlatform();
|
| @@ -133,6 +131,7 @@
|
| // Gets the Feature::Location value for the specified Manifest::Location.
|
| static Location ConvertLocation(Manifest::Location extension_location);
|
|
|
| + // TODO(justinlin): Remove and move to APIFeature when it exists.
|
| virtual std::set<Context>* GetContexts() = 0;
|
|
|
| // Returns true if the feature is available to be parsed into a new extension
|
| @@ -168,7 +167,6 @@
|
|
|
| protected:
|
| std::string name_;
|
| - std::set<std::string> dependencies_;
|
| };
|
|
|
| } // namespace extensions
|
|
|