Title: [104371] trunk/Source/WebCore
Revision
104371
Author
[email protected]
Date
2012-01-06 19:10:44 -0800 (Fri, 06 Jan 2012)

Log Message

Web Inspector: Missing Implementation of Public InspectorDOMAgent Function
https://bugs.webkit.org/show_bug.cgi?id=75759

Implement missing accessor and make setter public.

Patch by Joseph Pecoraro <[email protected]> on 2012-01-06
Reviewed by Timothy Hatcher.

* inspector/InspectorDOMAgent.cpp:
(WebCore::InspectorDOMAgent::searchingForNodeInPage):
* inspector/InspectorDOMAgent.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (104370 => 104371)


--- trunk/Source/WebCore/ChangeLog	2012-01-07 02:50:25 UTC (rev 104370)
+++ trunk/Source/WebCore/ChangeLog	2012-01-07 03:10:44 UTC (rev 104371)
@@ -1,3 +1,16 @@
+2012-01-06  Joseph Pecoraro  <[email protected]>
+
+        Web Inspector: Missing Implementation of Public InspectorDOMAgent Function
+        https://bugs.webkit.org/show_bug.cgi?id=75759
+
+        Implement missing accessor and make setter public.
+
+        Reviewed by Timothy Hatcher.
+
+        * inspector/InspectorDOMAgent.cpp:
+        (WebCore::InspectorDOMAgent::searchingForNodeInPage):
+        * inspector/InspectorDOMAgent.h:
+
 2012-01-06  W. James MacLean  <[email protected]>
 
         [Chromium] Cull occluded tiles in tiled layers

Modified: trunk/Source/WebCore/inspector/InspectorDOMAgent.cpp (104370 => 104371)


--- trunk/Source/WebCore/inspector/InspectorDOMAgent.cpp	2012-01-07 02:50:25 UTC (rev 104370)
+++ trunk/Source/WebCore/inspector/InspectorDOMAgent.cpp	2012-01-07 03:10:44 UTC (rev 104371)
@@ -943,6 +943,11 @@
     }
 }
 
+bool InspectorDOMAgent::searchingForNodeInPage() const
+{
+    return m_searchingForNode;
+}
+
 void InspectorDOMAgent::setSearchingForNode(bool enabled, InspectorObject* highlightConfig)
 {
     if (m_searchingForNode == enabled)

Modified: trunk/Source/WebCore/inspector/InspectorDOMAgent.h (104370 => 104371)


--- trunk/Source/WebCore/inspector/InspectorDOMAgent.h	2012-01-07 02:50:25 UTC (rev 104370)
+++ trunk/Source/WebCore/inspector/InspectorDOMAgent.h	2012-01-07 03:10:44 UTC (rev 104371)
@@ -169,8 +169,9 @@
 
     PassRefPtr<InspectorObject> resolveNode(Node*, const String& objectGroup);
     bool handleMousePress();
+    void mouseDidMoveOverElement(const HitTestResult&, unsigned modifierFlags);
     bool searchingForNodeInPage() const;
-    void mouseDidMoveOverElement(const HitTestResult&, unsigned modifierFlags);
+    void setSearchingForNode(bool enabled, InspectorObject* highlightConfig);
     void inspect(Node*);
     void focusNode();
 
@@ -191,7 +192,6 @@
 private:
     InspectorDOMAgent(InstrumentingAgents*, InspectorPageAgent*, InspectorClient*, InspectorState*, InjectedScriptManager*);
 
-    void setSearchingForNode(bool enabled, InspectorObject* highlightConfig);
     bool setHighlightDataFromConfig(InspectorObject* highlightConfig);
     void highlight();
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to