Title: [246132] trunk/Source/WebKit
Revision
246132
Author
[email protected]
Date
2019-06-05 16:05:51 -0700 (Wed, 05 Jun 2019)

Log Message

TestWebKitAPI.WKWebView.LocalStorageProcessSuspends is flaky on release builds
https://bugs.webkit.org/show_bug.cgi?id=198582

Reviewed by Youenn Fablet.

Initialize the state of StorageManager.

* NetworkProcess/WebStorage/StorageManager.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (246131 => 246132)


--- trunk/Source/WebKit/ChangeLog	2019-06-05 22:53:11 UTC (rev 246131)
+++ trunk/Source/WebKit/ChangeLog	2019-06-05 23:05:51 UTC (rev 246132)
@@ -1,3 +1,14 @@
+2019-06-05  Sihui Liu  <[email protected]>
+
+        TestWebKitAPI.WKWebView.LocalStorageProcessSuspends is flaky on release builds
+        https://bugs.webkit.org/show_bug.cgi?id=198582
+
+        Reviewed by Youenn Fablet.
+
+        Initialize the state of StorageManager.
+
+        * NetworkProcess/WebStorage/StorageManager.h:
+
 2019-06-05  Alex Christensen  <[email protected]>
 
         Re-enable safe browsing in WKWebView

Modified: trunk/Source/WebKit/NetworkProcess/WebStorage/StorageManager.h (246131 => 246132)


--- trunk/Source/WebKit/NetworkProcess/WebStorage/StorageManager.h	2019-06-05 22:53:11 UTC (rev 246131)
+++ trunk/Source/WebKit/NetworkProcess/WebStorage/StorageManager.h	2019-06-05 23:05:51 UTC (rev 246132)
@@ -118,7 +118,7 @@
         WillSuspend,
         Suspended
     };
-    State m_state;
+    State m_state { State::Running };
     Lock m_stateLock;
     Condition m_stateChangeCondition;
 };
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to