Title: [248778] trunk/Source/WebKit
Revision
248778
Author
cdu...@apple.com
Date
2019-08-16 10:55:25 -0700 (Fri, 16 Aug 2019)

Log Message

StorageManagerSet constructor should not be public
https://bugs.webkit.org/show_bug.cgi?id=200816

Reviewed by Geoffrey Garen.

StorageManagerSet constructor should not be public since it subclasses ThreadSafeRefCounted and
has a factory method.

* NetworkProcess/WebStorage/StorageManagerSet.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (248777 => 248778)


--- trunk/Source/WebKit/ChangeLog	2019-08-16 17:47:44 UTC (rev 248777)
+++ trunk/Source/WebKit/ChangeLog	2019-08-16 17:55:25 UTC (rev 248778)
@@ -1,3 +1,15 @@
+2019-08-16  Chris Dumez  <cdu...@apple.com>
+
+        StorageManagerSet constructor should not be public
+        https://bugs.webkit.org/show_bug.cgi?id=200816
+
+        Reviewed by Geoffrey Garen.
+
+        StorageManagerSet constructor should not be public since it subclasses ThreadSafeRefCounted and
+        has a factory method.
+
+        * NetworkProcess/WebStorage/StorageManagerSet.h:
+
 2019-08-16  Timothy Hatcher  <timo...@apple.com>
 
         REGRESSION (r248436): WKWebView doesn’t respect isOpaque setting in NIB.

Modified: trunk/Source/WebKit/NetworkProcess/WebStorage/StorageManagerSet.h (248777 => 248778)


--- trunk/Source/WebKit/NetworkProcess/WebStorage/StorageManagerSet.h	2019-08-16 17:47:44 UTC (rev 248777)
+++ trunk/Source/WebKit/NetworkProcess/WebStorage/StorageManagerSet.h	2019-08-16 17:55:25 UTC (rev 248778)
@@ -45,7 +45,6 @@
 class StorageManagerSet : public IPC::Connection::WorkQueueMessageReceiver {
 public:
     static Ref<StorageManagerSet> create();
-    StorageManagerSet();
     ~StorageManagerSet();
 
     void add(PAL::SessionID, const String& localStorageDirectory, SandboxExtension::Handle& localStorageDirectoryHandle);
@@ -72,6 +71,8 @@
     void didReceiveSyncMessage(IPC::Connection&, IPC::Decoder&, std::unique_ptr<IPC::Encoder>& replyEncoder);
 
 private:
+    StorageManagerSet();
+
     // Message Handlers
     void connectToLocalStorageArea(IPC::Connection&, PAL::SessionID , uint64_t storageNamespaceID, SecurityOriginData&&, ConnectToStorageAreaCallback&&);
     void connectToTransientLocalStorageArea(IPC::Connection&, PAL::SessionID , uint64_t storageNamespaceID, SecurityOriginData&&, SecurityOriginData&&, ConnectToStorageAreaCallback&&);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to