Changeset 52804 in webkit


Ignore:
Timestamp:
Jan 5, 2010 10:14:47 AM (14 years ago)
Author:
Adam Roben
Message:

Don't show HostWindows by default

This was making WebKitAPITest very flashy as windows appeared and
disappeared.

Part of <http://webkit.org/b/33212> Small fixes/improvements to
WebKitAPITest

Reviewed by Sam Weinig.

  • WebKitAPITest/HostWindow.cpp:

(WebKitAPITest::HostWindow::initialize): Removed the WS_VISIBLE style
from the window.

Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r52803 r52804  
     12010-01-05  Adam Roben  <aroben@apple.com>
     2
     3        Don't show HostWindows by default
     4
     5        This was making WebKitAPITest very flashy as windows appeared and
     6        disappeared.
     7
     8        Part of <http://webkit.org/b/33212> Small fixes/improvements to
     9        WebKitAPITest
     10
     11        Reviewed by Sam Weinig.
     12
     13        * WebKitAPITest/HostWindow.cpp:
     14        (WebKitAPITest::HostWindow::initialize): Removed the WS_VISIBLE style
     15        from the window.
     16
    1172010-01-05  Adam Roben  <aroben@apple.com>
    218
  • trunk/WebKitTools/WebKitAPITest/HostWindow.cpp

    r52753 r52804  
    3737{
    3838    registerWindowClass();
    39     m_window = CreateWindowExW(0, hostWindowClassName, L"WebKitAPITest", WS_OVERLAPPEDWINDOW | WS_VISIBLE, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, 0, 0, GetModuleHandle(0), 0);
     39    m_window = CreateWindowExW(0, hostWindowClassName, L"WebKitAPITest", WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, 0, 0, GetModuleHandle(0), 0);
    4040    return m_window;
    4141}
Note: See TracChangeset for help on using the changeset viewer.