Changeset 57272 in webkit


Ignore:
Timestamp:
Apr 8, 2010 6:54:40 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-04-08 Kwang Yul Seo <skyul@company100.net>

Reviewed by Simon Hausmann.

[WINCE] Use WebCore::instanceHandle()
https://bugs.webkit.org/show_bug.cgi?id=37202

Page::instanceHandle() is moved to WebCore::instanceHandle().

  • platform/wince/PasteboardWince.cpp: (WebCore::Pasteboard::Pasteboard):
  • platform/wince/SharedTimerWince.cpp: (WebCore::initializeOffScreenTimerWindow):
Location:
trunk/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r57269 r57272  
     12010-04-08  Kwang Yul Seo  <skyul@company100.net>
     2
     3        Reviewed by Simon Hausmann.
     4
     5        [WINCE] Use WebCore::instanceHandle()
     6        https://bugs.webkit.org/show_bug.cgi?id=37202
     7
     8        Page::instanceHandle() is moved to WebCore::instanceHandle().
     9
     10        * platform/wince/PasteboardWince.cpp:
     11        (WebCore::Pasteboard::Pasteboard):
     12        * platform/wince/SharedTimerWince.cpp:
     13        (WebCore::initializeOffScreenTimerWindow):
     14
    1152010-04-08  Vitaly Repeshko  <vitalyr@chromium.org>
    216
  • trunk/WebCore/platform/wince/PasteboardWince.cpp

    r56825 r57272  
    4141#include "RenderImage.h"
    4242#include "TextEncoding.h"
     43#include "WebCoreInstanceHandle.h"
    4344#include "markup.h"
    4445#include <wtf/text/CString.h>
     
    8889    memset(&wc, 0, sizeof(wc));
    8990    wc.lpfnWndProc    = PasteboardOwnerWndProc;
    90     wc.hInstance      = Page::instanceHandle();
     91    wc.hInstance      = WebCore::instanceHandle();
    9192    wc.lpszClassName  = L"PasteboardOwnerWindowClass";
    9293    ::RegisterClass(&wc);
  • trunk/WebCore/platform/wince/SharedTimerWince.cpp

    r52572 r57272  
    3030#include "Page.h"
    3131#include "SystemTime.h"
     32#include "WebCoreInstanceHandle.h"
    3233#include "Widget.h"
    3334#include <wtf/Assertions.h>
     
    8182    WNDCLASS wcex = {0};
    8283    wcex.lpfnWndProc    = TimerWindowWndProc;
    83     wcex.hInstance      = Page::instanceHandle();
     84    wcex.hInstance      = WebCore::instanceHandle();
    8485    wcex.lpszClassName  = kTimerWindowClassName;
    8586    RegisterClass(&wcex);
    8687
    8788    timerWindowHandle = CreateWindow(kTimerWindowClassName, 0, 0,
    88        CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, 0, 0, Page::instanceHandle(), 0);
     89       CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, 0, 0, WebCore::instanceHandle(), 0);
    8990}
    9091
Note: See TracChangeset for help on using the changeset viewer.