Put enableMixedSandbox before deprecation TODO

This commit is contained in:
Kevin Sawicki 2017-06-28 08:37:56 -07:00
parent f1dbfb1925
commit 628744f9e1

View file

@ -1129,9 +1129,9 @@ void App::BuildPrototype(
.SetMethod("getFileIcon", &App::GetFileIcon) .SetMethod("getFileIcon", &App::GetFileIcon)
.SetMethod("getAppMetrics", &App::GetAppMetrics) .SetMethod("getAppMetrics", &App::GetAppMetrics)
.SetMethod("getGPUFeatureStatus", &App::GetGPUFeatureStatus) .SetMethod("getGPUFeatureStatus", &App::GetGPUFeatureStatus)
.SetMethod("enableMixedSandbox", &App::EnableMixedSandbox)
// TODO(juturu): Remove in 2.0, deprecate before then with warnings // TODO(juturu): Remove in 2.0, deprecate before then with warnings
.SetMethod("getAppMemoryInfo", &App::GetAppMetrics) .SetMethod("getAppMemoryInfo", &App::GetAppMetrics);
.SetMethod("enableMixedSandbox", &App::EnableMixedSandbox);
} }
} // namespace api } // namespace api