Title: [260492] trunk/Source/WebKit
Revision
260492
Author
[email protected]
Date
2020-04-21 20:13:18 -0700 (Tue, 21 Apr 2020)

Log Message

IPC::Encoder::reserve() can be private
<https://webkit.org/b/210833>
<rdar://problem/62124193>

Reviewed by Darin Adler.

* Platform/IPC/Encoder.h:
(IPC::Encoder::reserve):
- Move from public to private.

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (260491 => 260492)


--- trunk/Source/WebKit/ChangeLog	2020-04-22 03:03:43 UTC (rev 260491)
+++ trunk/Source/WebKit/ChangeLog	2020-04-22 03:13:18 UTC (rev 260492)
@@ -1,3 +1,15 @@
+2020-04-21  David Kilzer  <[email protected]>
+
+        IPC::Encoder::reserve() can be private
+        <https://webkit.org/b/210833>
+        <rdar://problem/62124193>
+
+        Reviewed by Darin Adler.
+
+        * Platform/IPC/Encoder.h:
+        (IPC::Encoder::reserve):
+        - Move from public to private.
+
 2020-04-21  Stephan Szabo  <[email protected]>
 
         [PlayStation] Fix GPU Process build for VIDEO_PRESENTATION_MODE changes

Modified: trunk/Source/WebKit/Platform/IPC/Encoder.h (260491 => 260492)


--- trunk/Source/WebKit/Platform/IPC/Encoder.h	2020-04-22 03:03:43 UTC (rev 260491)
+++ trunk/Source/WebKit/Platform/IPC/Encoder.h	2020-04-22 03:13:18 UTC (rev 260492)
@@ -89,7 +89,6 @@
 
     void addAttachment(Attachment&&);
     Vector<Attachment> releaseAttachments();
-    void reserve(size_t);
 
     static const bool isIPCEncoder = true;
 
@@ -96,6 +95,8 @@
     void encode(uint64_t);
 
 private:
+    void reserve(size_t);
+
     uint8_t* grow(unsigned alignment, size_t);
 
     void encode(bool);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to