Title: [189589] trunk/Source/WebKit2
Revision
189589
Author
[email protected]
Date
2015-09-10 14:06:01 -0700 (Thu, 10 Sep 2015)

Log Message

Web Inspector: Remove unused member in WebPage
https://bugs.webkit.org/show_bug.cgi?id=149040

Patch by Joseph Pecoraro <[email protected]> on 2015-09-10
Reviewed by Brian Burg.

* WebProcess/WebPage/WebPage.cpp:
* WebProcess/WebPage/WebPage.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (189588 => 189589)


--- trunk/Source/WebKit2/ChangeLog	2015-09-10 20:50:33 UTC (rev 189588)
+++ trunk/Source/WebKit2/ChangeLog	2015-09-10 21:06:01 UTC (rev 189589)
@@ -1,3 +1,13 @@
+2015-09-10  Joseph Pecoraro  <[email protected]>
+
+        Web Inspector: Remove unused member in WebPage
+        https://bugs.webkit.org/show_bug.cgi?id=149040
+
+        Reviewed by Brian Burg.
+
+        * WebProcess/WebPage/WebPage.cpp:
+        * WebProcess/WebPage/WebPage.h:
+
 2015-09-10  Daniel Bates  <[email protected]>
 
         sendProcessWillSuspendImminently uses a wrong message flag

Modified: trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp (189588 => 189589)


--- trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp	2015-09-10 20:50:33 UTC (rev 189588)
+++ trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp	2015-09-10 21:06:01 UTC (rev 189589)
@@ -337,7 +337,6 @@
     , m_inDynamicSizeUpdate(false)
     , m_volatilityTimer(*this, &WebPage::volatilityTimerFired)
 #endif
-    , m_inspectorClient(0)
     , m_backgroundColor(Color::white)
     , m_maximumRenderingSuppressionToken(0)
     , m_scrollPinningBehavior(DoNotPin)
@@ -370,8 +369,7 @@
     pageConfiguration.dragClient = new WebDragClient(this);
 #endif
     pageConfiguration.backForwardClient = WebBackForwardListProxy::create(this);
-    m_inspectorClient = new WebInspectorClient(this);
-    pageConfiguration.inspectorClient = m_inspectorClient;
+    pageConfiguration.inspectorClient = new WebInspectorClient(this);
 #if USE(AUTOCORRECTION_PANEL)
     pageConfiguration.alternativeTextClient = new WebAlternativeTextClient(this);
 #endif

Modified: trunk/Source/WebKit2/WebProcess/WebPage/WebPage.h (189588 => 189589)


--- trunk/Source/WebKit2/WebProcess/WebPage/WebPage.h	2015-09-10 20:50:33 UTC (rev 189588)
+++ trunk/Source/WebKit2/WebProcess/WebPage/WebPage.h	2015-09-10 21:06:01 UTC (rev 189589)
@@ -1381,8 +1381,6 @@
     WebCore::Timer m_volatilityTimer;
 #endif
 
-    WebInspectorClient* m_inspectorClient;
-
     HashSet<String, CaseFoldingHash> m_mimeTypesWithCustomContentProviders;
     WebCore::Color m_backgroundColor;
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to