| Index: Source/build/scripts/templates/RuntimeEnabledFeatures.h.tmpl
|
| diff --git a/Source/build/scripts/templates/RuntimeEnabledFeatures.h.tmpl b/Source/build/scripts/templates/RuntimeEnabledFeatures.h.tmpl
|
| index c3afacbb9328c2e8ba2eff9b66fb34997e139073..b9f4873783ad960f0361ab405ca8de808849a77e 100644
|
| --- a/Source/build/scripts/templates/RuntimeEnabledFeatures.h.tmpl
|
| +++ b/Source/build/scripts/templates/RuntimeEnabledFeatures.h.tmpl
|
| @@ -4,6 +4,8 @@
|
| #ifndef RuntimeEnabledFeatures_h
|
| #define RuntimeEnabledFeatures_h
|
|
|
| +#include <string>
|
| +
|
| #include "platform/PlatformExport.h"
|
| #include "wtf/Forward.h"
|
|
|
| @@ -17,7 +19,7 @@ public:
|
| static void set{{feature_set|capitalize}}FeaturesEnabled(bool);
|
| {% endfor %}
|
|
|
| - static void setFeatureEnabledFromString(const WTF::String& name, bool isEnabled);
|
| + static void setFeatureEnabledFromString(const std::string& name, bool isEnabled);
|
|
|
| {% for feature in features %}
|
| {% if feature.custom %}
|
|
|