X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fxwalk%2Fruntime%2Fcommon%2Fxwalk_runtime_features.cc;h=1b525a606e215c6e1128dbb53f6a09f8758de5da;hb=a5108fcda22462462a0c9692e802750284d31512;hp=ceb716617eee581160b7347e28b975c7245e3257;hpb=f5180d0a4dfe13ef74567dc9aa75047c1a9cd6de;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/xwalk/runtime/common/xwalk_runtime_features.cc b/src/xwalk/runtime/common/xwalk_runtime_features.cc index ceb7166..1b525a6 100644 --- a/src/xwalk/runtime/common/xwalk_runtime_features.cc +++ b/src/xwalk/runtime/common/xwalk_runtime_features.cc @@ -30,8 +30,9 @@ XWalkRuntimeFeatures* XWalkRuntimeFeatures::GetInstance() { } XWalkRuntimeFeatures::XWalkRuntimeFeatures() - : command_line_(0) - , initialized_(false) {} + : command_line_(0), + initialized_(false), + experimental_features_enabled_(false) {} void XWalkRuntimeFeatures::Initialize(const CommandLine* cmd) { command_line_ = cmd; @@ -72,6 +73,7 @@ void XWalkRuntimeFeatures::AddFeature(const char* name, feature.description = description; feature.command_line_switch = command_line_switch; feature.status = status; + feature.enabled = false; if (experimental_features_enabled_) { feature.enabled = true;