Title: [248264] trunk/Source/WebKit
- Revision
- 248264
- Author
- [email protected]
- Date
- 2019-08-04 11:28:45 -0700 (Sun, 04 Aug 2019)
Log Message
Remove unused lambda capture in MemoryPressureMonitor
https://bugs.webkit.org/show_bug.cgi?id=200420
Reviewed by Darin Adler.
* UIProcess/linux/MemoryPressureMonitor.cpp:
(WebKit::MemoryPressureMonitor::start):
Modified Paths
Diff
Modified: trunk/Source/WebKit/ChangeLog (248263 => 248264)
--- trunk/Source/WebKit/ChangeLog 2019-08-04 13:59:31 UTC (rev 248263)
+++ trunk/Source/WebKit/ChangeLog 2019-08-04 18:28:45 UTC (rev 248264)
@@ -1,3 +1,13 @@
+2019-08-04 Konstantin Tokarev <[email protected]>
+
+ Remove unused lambda capture in MemoryPressureMonitor
+ https://bugs.webkit.org/show_bug.cgi?id=200420
+
+ Reviewed by Darin Adler.
+
+ * UIProcess/linux/MemoryPressureMonitor.cpp:
+ (WebKit::MemoryPressureMonitor::start):
+
2019-08-03 Konstantin Tokarev <[email protected]>
Fix compilation with disabled WebGL
Modified: trunk/Source/WebKit/UIProcess/linux/MemoryPressureMonitor.cpp (248263 => 248264)
--- trunk/Source/WebKit/UIProcess/linux/MemoryPressureMonitor.cpp 2019-08-04 13:59:31 UTC (rev 248263)
+++ trunk/Source/WebKit/UIProcess/linux/MemoryPressureMonitor.cpp 2019-08-04 18:28:45 UTC (rev 248264)
@@ -220,7 +220,7 @@
m_started = true;
- Thread::create("MemoryPressureMonitor", [this] {
+ Thread::create("MemoryPressureMonitor", [] {
Seconds pollInterval = s_maxPollingInterval;
while (true) {
sleep(pollInterval);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes