| Index: Source/WebKit/chromium/src/WebRuntimeFeatures.cpp
|
| diff --git a/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp b/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp
|
| index cab20da5ac22d8738186c86748fe11462ed64c1a..5e371254b7a8d3516ad4988ac70a75432fc0bba0 100644
|
| --- a/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp
|
| +++ b/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp
|
| @@ -430,6 +430,16 @@ bool WebRuntimeFeatures::isPagePopupEnabled()
|
| return RuntimeEnabledFeatures::pagePopupEnabled();
|
| }
|
|
|
| +void WebRuntimeFeatures::enableParseSVGAsHTML(bool enable)
|
| +{
|
| + RuntimeEnabledFeatures::setParseSVGAsHTMLEnabled(enable);
|
| +}
|
| +
|
| +bool WebRuntimeFeatures::isParseSVGAsHTMLEnabled()
|
| +{
|
| + return RuntimeEnabledFeatures::parseSVGAsHTMLEnabled();
|
| +}
|
| +
|
| void WebRuntimeFeatures::enablePeerConnection(bool enable)
|
| {
|
| RuntimeEnabledFeatures::setPeerConnectionEnabled(enable);
|
|
|