Changeset 121776 in webkit


Ignore:
Timestamp:
Jul 3, 2012 9:15:24 AM (12 years ago)
Author:
thakis@chromium.org
Message:

-Wunused-private-field cleanup, linux edition
https://bugs.webkit.org/show_bug.cgi?id=90463

Reviewed by Stephen White.

  • DumpRenderTree/chromium/DRTDevToolsAgent.h:
  • DumpRenderTree/chromium/GamepadController.h:

(GamepadController):

  • DumpRenderTree/chromium/NotificationPresenter.h:

(NotificationPresenter::NotificationPresenter):
(NotificationPresenter):

Location:
trunk/Tools
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r121775 r121776  
     12012-07-03  Nico Weber  <thakis@chromium.org>
     2
     3        -Wunused-private-field cleanup, linux edition
     4        https://bugs.webkit.org/show_bug.cgi?id=90463
     5
     6        Reviewed by Stephen White.
     7
     8        * DumpRenderTree/chromium/DRTDevToolsAgent.h:
     9        * DumpRenderTree/chromium/GamepadController.h:
     10        (GamepadController):
     11        * DumpRenderTree/chromium/NotificationPresenter.h:
     12        (NotificationPresenter::NotificationPresenter):
     13        (NotificationPresenter):
     14
    1152012-07-03  Sheriff Bot  <webkit.review.bot@gmail.com>
    216
  • trunk/Tools/DumpRenderTree/chromium/DRTDevToolsAgent.h

    r118705 r121776  
    8989    DRTDevToolsClient* m_drtDevToolsClient;
    9090    int m_routingID;
    91     WebKit::WebDevToolsAgent* m_webDevToolsAgent;
    9291    WebKit::WebView* m_webView;
    9392};
  • trunk/Tools/DumpRenderTree/chromium/GamepadController.cpp

    r113274 r121776  
    3636using namespace WebKit;
    3737
    38 GamepadController::GamepadController(TestShell* shell)
    39     : m_shell(shell)
     38GamepadController::GamepadController(TestShell*)
    4039{
    4140    bindMethod("connect", &GamepadController::connect);
  • trunk/Tools/DumpRenderTree/chromium/GamepadController.h

    r102044 r121776  
    6060    void fallbackCallback(const CppArgumentList&, CppVariant*);
    6161
    62     TestShell* m_shell;
    63 
    6462    WebKit::WebGamepads internalData;
    6563};
  • trunk/Tools/DumpRenderTree/chromium/NotificationPresenter.h

    r99368 r121776  
    4444class NotificationPresenter : public WebKit::WebNotificationPresenter {
    4545public:
    46     explicit NotificationPresenter(TestShell* shell) : m_shell(shell) { }
     46    explicit NotificationPresenter(TestShell*) { }
    4747    virtual ~NotificationPresenter();
    4848
     
    6363
    6464private:
    65     // Non-owned pointer. The NotificationPresenter is owned by the test shell.
    66     TestShell* m_shell;
    67 
    6865    // Set of allowed origins.
    6966    HashSet<WTF::String> m_allowedOrigins;
Note: See TracChangeset for help on using the changeset viewer.