Changeset 104596 in webkit


Ignore:
Timestamp:
Jan 10, 2012 10:44:41 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

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

Follow-up: Remove the unused method. Keep the setter private.

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2012-01-10
Reviewed by Pavel Feldman.

  • inspector/InspectorDOMAgent.cpp:
  • inspector/InspectorDOMAgent.h:
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r104595 r104596  
     12012-01-10  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Web Inspector: Missing Implementation of Public InspectorDOMAgent Function
     4        https://bugs.webkit.org/show_bug.cgi?id=75759
     5
     6        Follow-up: Remove the unused method. Keep the setter private.
     7
     8        Reviewed by Pavel Feldman.
     9
     10        * inspector/InspectorDOMAgent.cpp:
     11        * inspector/InspectorDOMAgent.h:
     12
    1132012-01-10  Pavel Feldman  <pfeldman@google.com>
    214
  • trunk/Source/WebCore/inspector/InspectorDOMAgent.cpp

    r104586 r104596  
    954954}
    955955
    956 bool InspectorDOMAgent::searchingForNodeInPage() const
    957 {
    958     return m_searchingForNode;
    959 }
    960 
    961956void InspectorDOMAgent::setSearchingForNode(bool enabled, InspectorObject* highlightConfig)
    962957{
  • trunk/Source/WebCore/inspector/InspectorDOMAgent.h

    r104371 r104596  
    171171    bool handleMousePress();
    172172    void mouseDidMoveOverElement(const HitTestResult&, unsigned modifierFlags);
    173     bool searchingForNodeInPage() const;
    174     void setSearchingForNode(bool enabled, InspectorObject* highlightConfig);
    175173    void inspect(Node*);
    176174    void focusNode();
     
    193191    InspectorDOMAgent(InstrumentingAgents*, InspectorPageAgent*, InspectorClient*, InspectorState*, InjectedScriptManager*);
    194192
     193    void setSearchingForNode(bool enabled, InspectorObject* highlightConfig);
    195194    bool setHighlightDataFromConfig(InspectorObject* highlightConfig);
    196195    void highlight();
Note: See TracChangeset for help on using the changeset viewer.