Title: [212160] trunk/Source/WebKit2
Revision
212160
Author
commit-qu...@webkit.org
Date
2017-02-10 15:49:26 -0800 (Fri, 10 Feb 2017)

Log Message

WebProcess: remove unused m_inDidClose
https://bugs.webkit.org/show_bug.cgi?id=168121

Patch by Olivier Blin <olivier.b...@softathome.com> on 2017-02-10
Reviewed by Alex Christensen.

* WebProcess/WebProcess.cpp:
(WebKit::WebProcess::didClose):
* WebProcess/WebProcess.h:
m_inDidClose has been unused since r83774

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (212159 => 212160)


--- trunk/Source/WebKit2/ChangeLog	2017-02-10 23:48:44 UTC (rev 212159)
+++ trunk/Source/WebKit2/ChangeLog	2017-02-10 23:49:26 UTC (rev 212160)
@@ -1,3 +1,15 @@
+2017-02-10  Olivier Blin  <olivier.b...@softathome.com>
+
+        WebProcess: remove unused m_inDidClose
+        https://bugs.webkit.org/show_bug.cgi?id=168121
+
+        Reviewed by Alex Christensen.
+
+        * WebProcess/WebProcess.cpp:
+        (WebKit::WebProcess::didClose):
+        * WebProcess/WebProcess.h:
+        m_inDidClose has been unused since r83774
+
 2017-02-10  Joseph Pecoraro  <pecor...@apple.com>
 
         [Resource Timing] Enable Resource Timing by default in Tests

Modified: trunk/Source/WebKit2/WebProcess/WebProcess.cpp (212159 => 212160)


--- trunk/Source/WebKit2/WebProcess/WebProcess.cpp	2017-02-10 23:48:44 UTC (rev 212159)
+++ trunk/Source/WebKit2/WebProcess/WebProcess.cpp	2017-02-10 23:49:26 UTC (rev 212160)
@@ -645,8 +645,6 @@
 void WebProcess::didClose(IPC::Connection&)
 {
 #ifndef NDEBUG
-    m_inDidClose = true;
-
     // Close all the live pages.
     Vector<RefPtr<WebPage>> pages;
     copyValuesToVector(m_pageMap, pages);

Modified: trunk/Source/WebKit2/WebProcess/WebProcess.h (212159 => 212160)


--- trunk/Source/WebKit2/WebProcess/WebProcess.h	2017-02-10 23:48:44 UTC (rev 212159)
+++ trunk/Source/WebKit2/WebProcess/WebProcess.h	2017-02-10 23:49:26 UTC (rev 212160)
@@ -352,8 +352,6 @@
     RefPtr<ViewUpdateDispatcher> m_viewUpdateDispatcher;
 #endif
 
-    bool m_inDidClose { false };
-
     HashMap<WebCore::SessionID, HashMap<unsigned, double>> m_plugInAutoStartOriginHashes;
     HashSet<String> m_plugInAutoStartOrigins;
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to