| Index: gpu/command_buffer/service/feature_info.h
|
| diff --git a/gpu/command_buffer/service/feature_info.h b/gpu/command_buffer/service/feature_info.h
|
| index 71c9b71dd5075a9972c36a5cda53c6dcdd3b3745..b00830e9be5d5774c1aa7d1f343d704a53283e26 100644
|
| --- a/gpu/command_buffer/service/feature_info.h
|
| +++ b/gpu/command_buffer/service/feature_info.h
|
| @@ -54,7 +54,6 @@ class GPU_EXPORT FeatureInfo : public base::RefCounted<FeatureInfo> {
|
| };
|
|
|
| FeatureInfo();
|
| - ~FeatureInfo();
|
|
|
| // If allowed features = NULL or "*", all features are allowed. Otherwise
|
| // only features that match the strings in allowed_features are allowed.
|
| @@ -79,6 +78,9 @@ class GPU_EXPORT FeatureInfo : public base::RefCounted<FeatureInfo> {
|
| }
|
|
|
| private:
|
| + friend class base::RefCounted<FeatureInfo>;
|
| + ~FeatureInfo();
|
| +
|
| void AddExtensionString(const std::string& str);
|
|
|
| Validators validators_;
|
|
|