Changeset 70386 in webkit


Ignore:
Timestamp:
Oct 23, 2010 7:22:35 AM (14 years ago)
Author:
timothy@apple.com
Message:

Remove stale stubs that are not longer part of InspectorClient.

https://bugs.webkit.org/show_bug.cgi?id=48090

Reviewed by Adam Roben.

  • WebProcess/WebCoreSupport/WebInspectorClient.cpp:
  • WebProcess/WebCoreSupport/WebInspectorClient.h:
Location:
trunk/WebKit2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit2/ChangeLog

    r70379 r70386  
     12010-10-21  Timothy Hatcher  <timothy@apple.com>
     2
     3        Remove stale stubs that are not longer part of InspectorClient.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=48090
     6
     7        Reviewed by Adam Roben.
     8
     9        * WebProcess/WebCoreSupport/WebInspectorClient.cpp:
     10        * WebProcess/WebCoreSupport/WebInspectorClient.h:
     11
    1122010-10-22  Andy Estes  <aestes@apple.com>
    213
  • trunk/WebKit2/WebProcess/WebCoreSupport/WebInspectorClient.cpp

    r62866 r70386  
    4343}
    4444
    45 Page* WebInspectorClient::createPage()
    46 {
    47     notImplemented();
    48     return 0;
    49 }
    50 
    51 String WebInspectorClient::localizedStringsURL()
    52 {
    53     notImplemented();
    54     return String();
    55 }
    56 
    57 String WebInspectorClient::hiddenPanels()
    58 {
    59     notImplemented();
    60     return String();
    61 }
    62 
    63 void WebInspectorClient::showWindow()
    64 {
    65     notImplemented();
    66 }
    67 
    68 void WebInspectorClient::closeWindow()
    69 {
    70     notImplemented();
    71 }
    72 
    73 void WebInspectorClient::attachWindow()
    74 {
    75     notImplemented();
    76 }
    77 
    78 void WebInspectorClient::detachWindow()
    79 {
    80     notImplemented();
    81 }
    82 
    83 void WebInspectorClient::setAttachedWindowHeight(unsigned height)
    84 {
    85     notImplemented();
    86 }
    87 
    8845void WebInspectorClient::highlight(Node*)
    8946{
     
    9249
    9350void WebInspectorClient::hideHighlight()
    94 {
    95     notImplemented();
    96 }
    97 
    98 void WebInspectorClient::inspectedURLChanged(const String& newURL)
    9951{
    10052    notImplemented();
     
    11769}
    11870
    119 
    120 void WebInspectorClient::inspectorWindowObjectCleared()
    121 {
    122     notImplemented();
    123 }
    124 
    12571} // namespace WebKit
  • trunk/WebKit2/WebProcess/WebCoreSupport/WebInspectorClient.h

    r67775 r70386  
    4242private:
    4343    virtual void inspectorDestroyed();
    44    
     44
    4545    virtual void openInspectorFrontend(WebCore::InspectorController*);
    4646
    47     virtual WebCore::Page* createPage();
    48    
    49     virtual String localizedStringsURL();
    50    
    51     virtual String hiddenPanels();
    52    
    53     virtual void showWindow();
    54     virtual void closeWindow();
    55    
    56     virtual void attachWindow();
    57     virtual void detachWindow();
    58    
    59     virtual void setAttachedWindowHeight(unsigned height);
    60    
    6147    virtual void highlight(WebCore::Node*);
    6248    virtual void hideHighlight();
    63    
    64     virtual void inspectedURLChanged(const String& newURL);
    6549
    6650    virtual void populateSetting(const String& key, String* value);
     
    6953    virtual bool sendMessageToFrontend(const String&);
    7054
    71     virtual void inspectorWindowObjectCleared();
    72    
    7355    WebPage* m_page;
    7456};
Note: See TracChangeset for help on using the changeset viewer.