Changeset 79121 in webkit


Ignore:
Timestamp:
Feb 19, 2011 7:45:07 AM (13 years ago)
Author:
Patrick Gansterer
Message:

2011-02-19 Patrick Gansterer <Patrick Gansterer>

Reviewed by Andreas Kling.

Move KeygenWinCE from wince into win directory
https://bugs.webkit.org/show_bug.cgi?id=54804

Move this file into the win directory, since it can be used on all windows platforms.

  • CMakeListsWinCE.txt:
  • platform/win/SSLKeyGeneratorWin.cpp: Renamed from platform/wince/KeygenWinCE.cpp.
Location:
trunk/Source/WebCore
Files:
2 edited
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/CMakeListsWinCE.txt

    r79119 r79121  
    5353    platform/win/PlatformMouseEventWin.cpp
    5454    platform/win/PlatformScreenWin.cpp
     55    platform/win/SSLKeyGeneratorWin.cpp
    5556    platform/win/ScrollbarThemeWin.cpp
    5657    platform/win/SearchPopupMenuWin.cpp
     
    6768    platform/wince/DragImageWince.cpp
    6869    platform/wince/FileSystemWince.cpp
    69     platform/wince/KeygenWince.cpp
    7070    platform/wince/KURLWince.cpp
    7171    platform/wince/MIMETypeRegistryWince.cpp
  • trunk/Source/WebCore/ChangeLog

    r79119 r79121  
     12011-02-19 Patrick Gansterer <paroga@webkit.org>
     2
     3        Reviewed by Andreas Kling.
     4
     5        Move KeygenWinCE from wince into win directory
     6        https://bugs.webkit.org/show_bug.cgi?id=54804
     7
     8        Move this file into the win directory, since it can be used on all windows platforms.
     9
     10        * CMakeListsWinCE.txt:
     11        * platform/win/SSLKeyGeneratorWin.cpp: Renamed from platform/wince/KeygenWinCE.cpp.
     12
    1132011-02-19  Patrick Gansterer  <paroga@webkit.org>
    214
  • trunk/Source/WebCore/platform/win/SSLKeyGeneratorWin.cpp

    • Property svn:eol-style set to native
    r79120 r79121  
    4444
    4545    // Try to delete it if it exists already
    46     CryptAcquireContext(&hContext, _T("keygen_container"), MS_ENHANCED_PROV, PROV_RSA_FULL, CRYPT_DELETEKEYSET);
     46    CryptAcquireContextW(&hContext, L"keygen_container", MS_ENHANCED_PROV, PROV_RSA_FULL, CRYPT_DELETEKEYSET);
    4747
    4848    do {
    49         if (!CryptAcquireContext(&hContext, _T("keygen_container"), MS_ENHANCED_PROV, PROV_RSA_FULL, CRYPT_NEWKEYSET))
     49        if (!CryptAcquireContextW(&hContext, L"keygen_container", MS_ENHANCED_PROV, PROV_RSA_FULL, CRYPT_NEWKEYSET))
    5050            break;
    5151
     
    8686    if (pPubInfo)
    8787        fastFree(pPubInfo);
    88        
     88
    8989    if (hKey)
    9090        CryptDestroyKey(hKey);
Note: See TracChangeset for help on using the changeset viewer.