Changeset 67686 in webkit


Ignore:
Timestamp:
Sep 16, 2010 6:32:12 PM (14 years ago)
Author:
tonikitoo@webkit.org
Message:

2010-09-12 Antonio Gomes <tonikitoo@webkit.org>

Reviewed by Andreas Kling.

Make initializeView method of LauncherWindow private.

No one else needs to be able to call it but LauncherWindow.
Also moving the declation of isGraphicsBased method down in the same file, in order
to better group related methods.

  • QtTestBrowser/launcherwindow.h:
  • QtTestBrowser/launcherwindow.h:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r67685 r67686  
     12010-09-12  Antonio Gomes  <tonikitoo@webkit.org>
     2
     3        Reviewed by Andreas Kling.
     4
     5        Make initializeView method of LauncherWindow private.
     6
     7        No one else needs to be able to call it but LauncherWindow.
     8        Also moving the declation of isGraphicsBased method down in the same file, in order
     9        to better group related methods.
     10
     11        * QtTestBrowser/launcherwindow.h:
     12
    1132010-09-12  Antonio Gomes  <tonikitoo@webkit.org>
    214
  • trunk/WebKitTools/QtTestBrowser/launcherwindow.h

    r65581 r67686  
    149149    void dumpHtml();
    150150
    151     void initializeView();
    152 
    153151    void setTouchMocking(bool on);
    154152    void toggleWebView(bool graphicsBased);
     
    184182private:
    185183    void init();
    186     bool isGraphicsBased() const;
     184    void initializeView();
    187185    void createChrome();
    188186    void applyPrefs();
    189187    void applyZoom();
     188
     189    bool isGraphicsBased() const;
    190190
    191191private:
Note: See TracChangeset for help on using the changeset viewer.