Title: [221972] trunk/Source/WebCore
Revision
221972
Author
[email protected]
Date
2017-09-13 09:23:31 -0700 (Wed, 13 Sep 2017)

Log Message

Initialize InternalSettings member variable.
https://bugs.webkit.org/show_bug.cgi?id=176838

Reviewed by Brent Fulgham.

Initialize the m_webVREnabled member in the constructor.

* testing/InternalSettings.cpp:
(WebCore::InternalSettings::Backup::Backup):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (221971 => 221972)


--- trunk/Source/WebCore/ChangeLog	2017-09-13 16:03:10 UTC (rev 221971)
+++ trunk/Source/WebCore/ChangeLog	2017-09-13 16:23:31 UTC (rev 221972)
@@ -1,3 +1,15 @@
+2017-09-13  Per Arne Vollan  <[email protected]>
+
+        Initialize InternalSettings member variable.
+        https://bugs.webkit.org/show_bug.cgi?id=176838
+
+        Reviewed by Brent Fulgham.
+
+        Initialize the m_webVREnabled member in the constructor.
+
+        * testing/InternalSettings.cpp:
+        (WebCore::InternalSettings::Backup::Backup):
+
 2017-09-13  Ms2ger  <[email protected]>
 
         Make WebGLRenderingContextBase::TypedList::data() const-correct.

Modified: trunk/Source/WebCore/testing/InternalSettings.cpp (221971 => 221972)


--- trunk/Source/WebCore/testing/InternalSettings.cpp	2017-09-13 16:03:10 UTC (rev 221971)
+++ trunk/Source/WebCore/testing/InternalSettings.cpp	2017-09-13 16:23:31 UTC (rev 221972)
@@ -110,6 +110,7 @@
 #if ENABLE(WEBGPU)
     , m_webGPUEnabled(RuntimeEnabledFeatures::sharedFeatures().webGPUEnabled())
 #endif
+    , m_webVREnabled(RuntimeEnabledFeatures::sharedFeatures().webVREnabled())
     , m_shouldMockBoldSystemFontForAccessibility(RenderTheme::singleton().shouldMockBoldSystemFontForAccessibility())
 #if USE(AUDIO_SESSION)
     , m_shouldManageAudioSessionCategory(Settings::shouldManageAudioSessionCategory())
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to