Index: extensions/common/features/complex_feature.h |
diff --git a/extensions/common/features/complex_feature.h b/extensions/common/features/complex_feature.h |
index 7b63ae6f957b08809537c9ac8891ddc51dc9db66..960a734fa4db4fdd353f6eb020ccb55fdc58f874 100644 |
--- a/extensions/common/features/complex_feature.h |
+++ b/extensions/common/features/complex_feature.h |
@@ -23,9 +23,9 @@ namespace extensions { |
// available, but not if only some combination of Features is available. |
class ComplexFeature : public Feature { |
public: |
- using FeatureList = std::vector<std::unique_ptr<Feature>>; |
+ using FeatureList = std::vector<Feature*>; |
- explicit ComplexFeature(std::unique_ptr<FeatureList> features); |
+ explicit ComplexFeature(FeatureList* features); |
Devlin
2016/07/29 18:50:15
I think there are a few testing call sites that st
|
~ComplexFeature() override; |
// extensions::Feature: |