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

Log Message

Web Inspector: WebInspectorUI does not need to be an API::Object
https://bugs.webkit.org/show_bug.cgi?id=149045

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

* Shared/API/APIObject.h:
* WebProcess/WebPage/WebInspectorUI.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (189591 => 189592)


--- trunk/Source/WebKit2/ChangeLog	2015-09-10 21:24:53 UTC (rev 189591)
+++ trunk/Source/WebKit2/ChangeLog	2015-09-10 21:28:27 UTC (rev 189592)
@@ -1,5 +1,15 @@
 2015-09-10  Joseph Pecoraro  <[email protected]>
 
+        Web Inspector: WebInspectorUI does not need to be an API::Object
+        https://bugs.webkit.org/show_bug.cgi?id=149045
+
+        Reviewed by Timothy Hatcher.
+
+        * Shared/API/APIObject.h:
+        * WebProcess/WebPage/WebInspectorUI.h:
+
+2015-09-10  Joseph Pecoraro  <[email protected]>
+
         Web Inspector: Remove unused member in WebPage
         https://bugs.webkit.org/show_bug.cgi?id=149040
 

Modified: trunk/Source/WebKit2/Shared/API/APIObject.h (189591 => 189592)


--- trunk/Source/WebKit2/Shared/API/APIObject.h	2015-09-10 21:24:53 UTC (rev 189591)
+++ trunk/Source/WebKit2/Shared/API/APIObject.h	2015-09-10 21:28:27 UTC (rev 189592)
@@ -165,7 +165,6 @@
         BundleFrame,
         BundleHitTestResult,
         BundleInspector,
-        BundleInspectorUI,
         BundleNavigationAction,
         BundleNodeHandle,
         BundlePage,

Modified: trunk/Source/WebKit2/WebProcess/WebPage/WebInspectorUI.h (189591 => 189592)


--- trunk/Source/WebKit2/WebProcess/WebPage/WebInspectorUI.h	2015-09-10 21:24:53 UTC (rev 189591)
+++ trunk/Source/WebKit2/WebProcess/WebPage/WebInspectorUI.h	2015-09-10 21:28:27 UTC (rev 189592)
@@ -35,7 +35,7 @@
 
 class WebPage;
 
-class WebInspectorUI : public API::ObjectImpl<API::Object::Type::BundleInspectorUI>, public IPC::Connection::Client, public WebCore::InspectorFrontendClient {
+class WebInspectorUI : public RefCounted<WebInspectorUI>, public IPC::Connection::Client, public WebCore::InspectorFrontendClient {
 public:
     static Ref<WebInspectorUI> create(WebPage*);
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to